├── .editorconfig ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── __init__.py ├── bottle.py ├── frameworks.py ├── index.html └── static ├── css ├── bootstrap.min.css └── bootstrap.min.css.map ├── favicon.ico ├── image ├── logo.png ├── logos │ ├── agenta.png │ ├── agno.svg │ ├── aiohttp.svg │ ├── airbyte.svg │ ├── airflow.png │ ├── ansible.png │ ├── apiflask.png │ ├── apprise.png │ ├── arcade.svg │ ├── ariadne.png │ ├── atomic-agents.png │ ├── autogen.svg │ ├── beeai.png │ ├── beeware.png │ ├── behave.webp │ ├── blacksheep.png │ ├── bottle.png │ ├── buildbot.svg │ ├── celery.webp │ ├── chainlit.png │ ├── chalice.png │ ├── cherrypy.png │ ├── cocos.png │ ├── connexion.svg │ ├── crawlee.svg │ ├── crewai.png │ ├── cubicweb.svg │ ├── custom-tkinter.png │ ├── dagster.svg │ ├── dara.svg │ ├── dash.png │ ├── dask.svg │ ├── davia.png │ ├── dbt.png │ ├── dearpygui.png │ ├── deepspeed.svg │ ├── dirsearch.png │ ├── django-cms.svg │ ├── django-machina.svg │ ├── django-ninja.png │ ├── django-rest-framework.png │ ├── django-tastypie.png │ ├── django.png │ ├── doit.png │ ├── dramatiq.png │ ├── emmett.png │ ├── erpnext.png │ ├── esmerald.png │ ├── eve.png │ ├── fabric.webp │ ├── falcon.svg │ ├── fastapi.png │ ├── fastmcp.svg │ ├── faust.png │ ├── feincms.png │ ├── firecrawl.png │ ├── flama.png │ ├── flask-restful.png │ ├── flask-restx.webp │ ├── flask.webp │ ├── flet.svg │ ├── flower.avif │ ├── frappe-framework.svg │ ├── google-adk.png │ ├── gradio.svg │ ├── graphene-python.png │ ├── graphene.png │ ├── griptape.png │ ├── grpc.png │ ├── gymnasium.png │ ├── h2o.svg │ ├── harfang3d.png │ ├── haystack.png │ ├── huey.png │ ├── hug.png │ ├── indico.png │ ├── joblib.svg │ ├── kedro.webp │ ├── keras.png │ ├── kivy.png │ ├── kotti-cms.png │ ├── lambdarest.png │ ├── langchain.png │ ├── langfuse.png │ ├── langgraph.png │ ├── langroid.png │ ├── lektor.png │ ├── letta.png │ ├── light-llm.png │ ├── lightgbm.svg │ ├── litellm.png │ ├── litestar.svg │ ├── llamaindex.svg │ ├── llmware.avif │ ├── localstack.svg │ ├── ludwig.jpg │ ├── luigi.png │ ├── mage-ai-mascots-shorter.jpeg │ ├── mage.png │ ├── mara-pipelines.jpg │ ├── masonite.png │ ├── mazzanine.png │ ├── mechanical-soup.png │ ├── mesop.png │ ├── metaflow.png │ ├── minos.png │ ├── mlflow.png │ ├── ms-agent-framework.png │ ├── muffin.png │ ├── nameko.png │ ├── nice-gui.png │ ├── odoo.png │ ├── ogre3d.png │ ├── openai-agents-sdk.png │ ├── optuna.png │ ├── panda3d.png │ ├── panel.png │ ├── plone.svg │ ├── prefect.png │ ├── privategpt.png │ ├── propan.png │ ├── psutil.png │ ├── puput.png │ ├── py4web.png │ ├── pyTermTk.png │ ├── pybuilder.svg │ ├── pydantic-ai.svg │ ├── pygame.png │ ├── pyglet.png │ ├── pygobject.svg │ ├── pyinfra.png │ ├── pyramid-cornice.png │ ├── pyramid.png │ ├── pysimplegui.png │ ├── pytest.svg │ ├── python-lambda.svg │ ├── python.png │ ├── pytorch.png │ ├── pywebview.png │ ├── qt.png │ ├── quart.webp │ ├── ray.png │ ├── reactpy.svg │ ├── reflex.svg │ ├── remi.png │ ├── renpy.png │ ├── rio.png │ ├── robot-framework.png │ ├── robyn.webp │ ├── rq.jpeg │ ├── ruia.png │ ├── salt.png │ ├── sanic.png │ ├── scikit-learn.png │ ├── scrapy.png │ ├── selenium.webp │ ├── shiny-for-python.svg │ ├── solara.svg │ ├── spark.png │ ├── spiffworkflow.png │ ├── starlette.svg │ ├── strandsagents.svg │ ├── strawberry-graphql.png │ ├── streamlit.png │ ├── streamparse.png │ ├── superagi.webp │ ├── swarm.png │ ├── taipy.png │ ├── tartiflette.svg │ ├── task-weaver.svg │ ├── tensorflow.png │ ├── textual.svg │ ├── toga.png │ ├── tornado.webp │ ├── trafilatura.png │ ├── trame.svg │ ├── turbogears.png │ ├── unicorn.png │ ├── urwid.png │ ├── wagtail.svg │ ├── ward.png │ ├── web2py.png │ ├── webpy.gif │ ├── wxpython.png │ ├── xgboost.png │ ├── zappa.jpeg │ └── zato.svg └── screenshot.png └── js ├── bootstrap.min.js ├── bootstrap.min.js.map ├── imagesloaded.pkgd.min.js └── masonry.pkgd.min.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "kiroAgent.configureMCP": "Disabled" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bottle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/bottle.py -------------------------------------------------------------------------------- /frameworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/frameworks.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/index.html -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logo.png -------------------------------------------------------------------------------- /static/image/logos/agenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/agenta.png -------------------------------------------------------------------------------- /static/image/logos/agno.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/agno.svg -------------------------------------------------------------------------------- /static/image/logos/aiohttp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/aiohttp.svg -------------------------------------------------------------------------------- /static/image/logos/airbyte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/airbyte.svg -------------------------------------------------------------------------------- /static/image/logos/airflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/airflow.png -------------------------------------------------------------------------------- /static/image/logos/ansible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/ansible.png -------------------------------------------------------------------------------- /static/image/logos/apiflask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/apiflask.png -------------------------------------------------------------------------------- /static/image/logos/apprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/apprise.png -------------------------------------------------------------------------------- /static/image/logos/arcade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/arcade.svg -------------------------------------------------------------------------------- /static/image/logos/ariadne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/ariadne.png -------------------------------------------------------------------------------- /static/image/logos/atomic-agents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/atomic-agents.png -------------------------------------------------------------------------------- /static/image/logos/autogen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/autogen.svg -------------------------------------------------------------------------------- /static/image/logos/beeai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/beeai.png -------------------------------------------------------------------------------- /static/image/logos/beeware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/beeware.png -------------------------------------------------------------------------------- /static/image/logos/behave.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/behave.webp -------------------------------------------------------------------------------- /static/image/logos/blacksheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/blacksheep.png -------------------------------------------------------------------------------- /static/image/logos/bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/bottle.png -------------------------------------------------------------------------------- /static/image/logos/buildbot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/buildbot.svg -------------------------------------------------------------------------------- /static/image/logos/celery.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/celery.webp -------------------------------------------------------------------------------- /static/image/logos/chainlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/chainlit.png -------------------------------------------------------------------------------- /static/image/logos/chalice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/chalice.png -------------------------------------------------------------------------------- /static/image/logos/cherrypy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/cherrypy.png -------------------------------------------------------------------------------- /static/image/logos/cocos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/cocos.png -------------------------------------------------------------------------------- /static/image/logos/connexion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/connexion.svg -------------------------------------------------------------------------------- /static/image/logos/crawlee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/crawlee.svg -------------------------------------------------------------------------------- /static/image/logos/crewai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/crewai.png -------------------------------------------------------------------------------- /static/image/logos/cubicweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/cubicweb.svg -------------------------------------------------------------------------------- /static/image/logos/custom-tkinter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/custom-tkinter.png -------------------------------------------------------------------------------- /static/image/logos/dagster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/dagster.svg -------------------------------------------------------------------------------- /static/image/logos/dara.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/dara.svg -------------------------------------------------------------------------------- /static/image/logos/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/dash.png -------------------------------------------------------------------------------- /static/image/logos/dask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/dask.svg -------------------------------------------------------------------------------- /static/image/logos/davia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/davia.png -------------------------------------------------------------------------------- /static/image/logos/dbt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/dbt.png -------------------------------------------------------------------------------- /static/image/logos/dearpygui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/dearpygui.png -------------------------------------------------------------------------------- /static/image/logos/deepspeed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/deepspeed.svg -------------------------------------------------------------------------------- /static/image/logos/dirsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/dirsearch.png -------------------------------------------------------------------------------- /static/image/logos/django-cms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/django-cms.svg -------------------------------------------------------------------------------- /static/image/logos/django-machina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/django-machina.svg -------------------------------------------------------------------------------- /static/image/logos/django-ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/django-ninja.png -------------------------------------------------------------------------------- /static/image/logos/django-rest-framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/django-rest-framework.png -------------------------------------------------------------------------------- /static/image/logos/django-tastypie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/django-tastypie.png -------------------------------------------------------------------------------- /static/image/logos/django.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/django.png -------------------------------------------------------------------------------- /static/image/logos/doit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/doit.png -------------------------------------------------------------------------------- /static/image/logos/dramatiq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/dramatiq.png -------------------------------------------------------------------------------- /static/image/logos/emmett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/emmett.png -------------------------------------------------------------------------------- /static/image/logos/erpnext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/erpnext.png -------------------------------------------------------------------------------- /static/image/logos/esmerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/esmerald.png -------------------------------------------------------------------------------- /static/image/logos/eve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/eve.png -------------------------------------------------------------------------------- /static/image/logos/fabric.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/fabric.webp -------------------------------------------------------------------------------- /static/image/logos/falcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/falcon.svg -------------------------------------------------------------------------------- /static/image/logos/fastapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/fastapi.png -------------------------------------------------------------------------------- /static/image/logos/fastmcp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/fastmcp.svg -------------------------------------------------------------------------------- /static/image/logos/faust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/faust.png -------------------------------------------------------------------------------- /static/image/logos/feincms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/feincms.png -------------------------------------------------------------------------------- /static/image/logos/firecrawl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/firecrawl.png -------------------------------------------------------------------------------- /static/image/logos/flama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/flama.png -------------------------------------------------------------------------------- /static/image/logos/flask-restful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/flask-restful.png -------------------------------------------------------------------------------- /static/image/logos/flask-restx.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/flask-restx.webp -------------------------------------------------------------------------------- /static/image/logos/flask.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/flask.webp -------------------------------------------------------------------------------- /static/image/logos/flet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/flet.svg -------------------------------------------------------------------------------- /static/image/logos/flower.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/flower.avif -------------------------------------------------------------------------------- /static/image/logos/frappe-framework.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/frappe-framework.svg -------------------------------------------------------------------------------- /static/image/logos/google-adk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/google-adk.png -------------------------------------------------------------------------------- /static/image/logos/gradio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/gradio.svg -------------------------------------------------------------------------------- /static/image/logos/graphene-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/graphene-python.png -------------------------------------------------------------------------------- /static/image/logos/graphene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/graphene.png -------------------------------------------------------------------------------- /static/image/logos/griptape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/griptape.png -------------------------------------------------------------------------------- /static/image/logos/grpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/grpc.png -------------------------------------------------------------------------------- /static/image/logos/gymnasium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/gymnasium.png -------------------------------------------------------------------------------- /static/image/logos/h2o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/h2o.svg -------------------------------------------------------------------------------- /static/image/logos/harfang3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/harfang3d.png -------------------------------------------------------------------------------- /static/image/logos/haystack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/haystack.png -------------------------------------------------------------------------------- /static/image/logos/huey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/huey.png -------------------------------------------------------------------------------- /static/image/logos/hug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/hug.png -------------------------------------------------------------------------------- /static/image/logos/indico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/indico.png -------------------------------------------------------------------------------- /static/image/logos/joblib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/joblib.svg -------------------------------------------------------------------------------- /static/image/logos/kedro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/kedro.webp -------------------------------------------------------------------------------- /static/image/logos/keras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/keras.png -------------------------------------------------------------------------------- /static/image/logos/kivy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/kivy.png -------------------------------------------------------------------------------- /static/image/logos/kotti-cms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/kotti-cms.png -------------------------------------------------------------------------------- /static/image/logos/lambdarest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/lambdarest.png -------------------------------------------------------------------------------- /static/image/logos/langchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/langchain.png -------------------------------------------------------------------------------- /static/image/logos/langfuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/langfuse.png -------------------------------------------------------------------------------- /static/image/logos/langgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/langgraph.png -------------------------------------------------------------------------------- /static/image/logos/langroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/langroid.png -------------------------------------------------------------------------------- /static/image/logos/lektor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/lektor.png -------------------------------------------------------------------------------- /static/image/logos/letta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/letta.png -------------------------------------------------------------------------------- /static/image/logos/light-llm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/light-llm.png -------------------------------------------------------------------------------- /static/image/logos/lightgbm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/lightgbm.svg -------------------------------------------------------------------------------- /static/image/logos/litellm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/litellm.png -------------------------------------------------------------------------------- /static/image/logos/litestar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/litestar.svg -------------------------------------------------------------------------------- /static/image/logos/llamaindex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/llamaindex.svg -------------------------------------------------------------------------------- /static/image/logos/llmware.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/llmware.avif -------------------------------------------------------------------------------- /static/image/logos/localstack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/localstack.svg -------------------------------------------------------------------------------- /static/image/logos/ludwig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/ludwig.jpg -------------------------------------------------------------------------------- /static/image/logos/luigi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/luigi.png -------------------------------------------------------------------------------- /static/image/logos/mage-ai-mascots-shorter.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/mage-ai-mascots-shorter.jpeg -------------------------------------------------------------------------------- /static/image/logos/mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/mage.png -------------------------------------------------------------------------------- /static/image/logos/mara-pipelines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/mara-pipelines.jpg -------------------------------------------------------------------------------- /static/image/logos/masonite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/masonite.png -------------------------------------------------------------------------------- /static/image/logos/mazzanine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/mazzanine.png -------------------------------------------------------------------------------- /static/image/logos/mechanical-soup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/mechanical-soup.png -------------------------------------------------------------------------------- /static/image/logos/mesop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/mesop.png -------------------------------------------------------------------------------- /static/image/logos/metaflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/metaflow.png -------------------------------------------------------------------------------- /static/image/logos/minos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/minos.png -------------------------------------------------------------------------------- /static/image/logos/mlflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/mlflow.png -------------------------------------------------------------------------------- /static/image/logos/ms-agent-framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/ms-agent-framework.png -------------------------------------------------------------------------------- /static/image/logos/muffin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/muffin.png -------------------------------------------------------------------------------- /static/image/logos/nameko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/nameko.png -------------------------------------------------------------------------------- /static/image/logos/nice-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/nice-gui.png -------------------------------------------------------------------------------- /static/image/logos/odoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/odoo.png -------------------------------------------------------------------------------- /static/image/logos/ogre3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/ogre3d.png -------------------------------------------------------------------------------- /static/image/logos/openai-agents-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/openai-agents-sdk.png -------------------------------------------------------------------------------- /static/image/logos/optuna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/optuna.png -------------------------------------------------------------------------------- /static/image/logos/panda3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/panda3d.png -------------------------------------------------------------------------------- /static/image/logos/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/panel.png -------------------------------------------------------------------------------- /static/image/logos/plone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/plone.svg -------------------------------------------------------------------------------- /static/image/logos/prefect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/prefect.png -------------------------------------------------------------------------------- /static/image/logos/privategpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/privategpt.png -------------------------------------------------------------------------------- /static/image/logos/propan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/propan.png -------------------------------------------------------------------------------- /static/image/logos/psutil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/psutil.png -------------------------------------------------------------------------------- /static/image/logos/puput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/puput.png -------------------------------------------------------------------------------- /static/image/logos/py4web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/py4web.png -------------------------------------------------------------------------------- /static/image/logos/pyTermTk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pyTermTk.png -------------------------------------------------------------------------------- /static/image/logos/pybuilder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pybuilder.svg -------------------------------------------------------------------------------- /static/image/logos/pydantic-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pydantic-ai.svg -------------------------------------------------------------------------------- /static/image/logos/pygame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pygame.png -------------------------------------------------------------------------------- /static/image/logos/pyglet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pyglet.png -------------------------------------------------------------------------------- /static/image/logos/pygobject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pygobject.svg -------------------------------------------------------------------------------- /static/image/logos/pyinfra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pyinfra.png -------------------------------------------------------------------------------- /static/image/logos/pyramid-cornice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pyramid-cornice.png -------------------------------------------------------------------------------- /static/image/logos/pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pyramid.png -------------------------------------------------------------------------------- /static/image/logos/pysimplegui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pysimplegui.png -------------------------------------------------------------------------------- /static/image/logos/pytest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pytest.svg -------------------------------------------------------------------------------- /static/image/logos/python-lambda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/python-lambda.svg -------------------------------------------------------------------------------- /static/image/logos/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/python.png -------------------------------------------------------------------------------- /static/image/logos/pytorch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pytorch.png -------------------------------------------------------------------------------- /static/image/logos/pywebview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/pywebview.png -------------------------------------------------------------------------------- /static/image/logos/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/qt.png -------------------------------------------------------------------------------- /static/image/logos/quart.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/quart.webp -------------------------------------------------------------------------------- /static/image/logos/ray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/ray.png -------------------------------------------------------------------------------- /static/image/logos/reactpy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/reactpy.svg -------------------------------------------------------------------------------- /static/image/logos/reflex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/reflex.svg -------------------------------------------------------------------------------- /static/image/logos/remi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/remi.png -------------------------------------------------------------------------------- /static/image/logos/renpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/renpy.png -------------------------------------------------------------------------------- /static/image/logos/rio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/rio.png -------------------------------------------------------------------------------- /static/image/logos/robot-framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/robot-framework.png -------------------------------------------------------------------------------- /static/image/logos/robyn.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/robyn.webp -------------------------------------------------------------------------------- /static/image/logos/rq.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/rq.jpeg -------------------------------------------------------------------------------- /static/image/logos/ruia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/ruia.png -------------------------------------------------------------------------------- /static/image/logos/salt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/salt.png -------------------------------------------------------------------------------- /static/image/logos/sanic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/sanic.png -------------------------------------------------------------------------------- /static/image/logos/scikit-learn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/scikit-learn.png -------------------------------------------------------------------------------- /static/image/logos/scrapy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/scrapy.png -------------------------------------------------------------------------------- /static/image/logos/selenium.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/selenium.webp -------------------------------------------------------------------------------- /static/image/logos/shiny-for-python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/shiny-for-python.svg -------------------------------------------------------------------------------- /static/image/logos/solara.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/solara.svg -------------------------------------------------------------------------------- /static/image/logos/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/spark.png -------------------------------------------------------------------------------- /static/image/logos/spiffworkflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/spiffworkflow.png -------------------------------------------------------------------------------- /static/image/logos/starlette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/starlette.svg -------------------------------------------------------------------------------- /static/image/logos/strandsagents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/strandsagents.svg -------------------------------------------------------------------------------- /static/image/logos/strawberry-graphql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/strawberry-graphql.png -------------------------------------------------------------------------------- /static/image/logos/streamlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/streamlit.png -------------------------------------------------------------------------------- /static/image/logos/streamparse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/streamparse.png -------------------------------------------------------------------------------- /static/image/logos/superagi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/superagi.webp -------------------------------------------------------------------------------- /static/image/logos/swarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/swarm.png -------------------------------------------------------------------------------- /static/image/logos/taipy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/taipy.png -------------------------------------------------------------------------------- /static/image/logos/tartiflette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/tartiflette.svg -------------------------------------------------------------------------------- /static/image/logos/task-weaver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/task-weaver.svg -------------------------------------------------------------------------------- /static/image/logos/tensorflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/tensorflow.png -------------------------------------------------------------------------------- /static/image/logos/textual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/textual.svg -------------------------------------------------------------------------------- /static/image/logos/toga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/toga.png -------------------------------------------------------------------------------- /static/image/logos/tornado.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/tornado.webp -------------------------------------------------------------------------------- /static/image/logos/trafilatura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/trafilatura.png -------------------------------------------------------------------------------- /static/image/logos/trame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/trame.svg -------------------------------------------------------------------------------- /static/image/logos/turbogears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/turbogears.png -------------------------------------------------------------------------------- /static/image/logos/unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/unicorn.png -------------------------------------------------------------------------------- /static/image/logos/urwid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/urwid.png -------------------------------------------------------------------------------- /static/image/logos/wagtail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/wagtail.svg -------------------------------------------------------------------------------- /static/image/logos/ward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/ward.png -------------------------------------------------------------------------------- /static/image/logos/web2py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/web2py.png -------------------------------------------------------------------------------- /static/image/logos/webpy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/webpy.gif -------------------------------------------------------------------------------- /static/image/logos/wxpython.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/wxpython.png -------------------------------------------------------------------------------- /static/image/logos/xgboost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/xgboost.png -------------------------------------------------------------------------------- /static/image/logos/zappa.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/zappa.jpeg -------------------------------------------------------------------------------- /static/image/logos/zato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/logos/zato.svg -------------------------------------------------------------------------------- /static/image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/image/screenshot.png -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /static/js/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/js/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /static/js/masonry.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgujerry/python-frameworks/HEAD/static/js/masonry.pkgd.min.js --------------------------------------------------------------------------------