gitextract_px7q7tzs/ ├── .babelrc ├── .eslintrc ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ ├── feature-request.md │ │ └── other.md │ ├── actions/ │ │ └── prepare/ │ │ └── action.yml │ └── workflows/ │ ├── issue-scripts.yml │ ├── process-changes.yml │ ├── pypi.yml │ └── update-js-build-files.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── cypress/ │ ├── integration/ │ │ ├── basic.js │ │ ├── image.js │ │ ├── misc.js │ │ ├── modal.js │ │ ├── pane.js │ │ ├── properties.js │ │ ├── screenshots.init.js │ │ ├── screenshots.js │ │ └── text.js │ ├── plugins/ │ │ └── index.js │ └── support/ │ ├── commands.js │ ├── index.js │ └── screenshots.config.js ├── cypress.json ├── download.sh ├── example/ │ ├── components/ │ │ ├── __init__.py │ │ ├── image.py │ │ ├── misc.py │ │ ├── plot_bar.py │ │ ├── plot_line.py │ │ ├── plot_scatter.py │ │ ├── plot_special.py │ │ ├── plot_surface.py │ │ ├── properties.py │ │ └── text.py │ ├── demo.py │ └── mnist-embeddings.py ├── js/ │ ├── EventSystem.js │ ├── Width.js │ ├── api/ │ │ ├── ApiContext.js │ │ ├── ApiProvider.js │ │ └── Legacy.js │ ├── lasso.js │ ├── main.js │ ├── modals/ │ │ ├── EnvModal.js │ │ └── ViewModal.js │ ├── panes/ │ │ ├── EmbeddingsPane.js │ │ ├── ImagePane.js │ │ ├── NetworkPane.js │ │ ├── Pane.js │ │ ├── PlotPane.js │ │ ├── PropertiesPane.js │ │ ├── PropertyItem.js │ │ └── TextPane.js │ ├── settings.js │ ├── topbar/ │ │ ├── ConnectionIndicator.js │ │ ├── EnvControls.js │ │ ├── FilterControls.js │ │ └── ViewControls.js │ └── util.js ├── package.json ├── py/ │ └── visdom/ │ ├── VERSION │ ├── __init__.py │ ├── __init__.pyi │ ├── py.typed │ ├── server/ │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── app.py │ │ ├── build.py │ │ ├── defaults.py │ │ ├── handlers/ │ │ │ ├── __init__.py │ │ │ ├── base_handlers.py │ │ │ ├── socket_handlers.py │ │ │ └── web_handlers.py │ │ └── run_server.py │ ├── static/ │ │ ├── index.html │ │ └── login.html │ ├── user/ │ │ └── style.css │ └── utils/ │ ├── __init__.py │ ├── server_utils.py │ └── shared_utils.py ├── setup.py ├── test-requirements.txt ├── th/ │ ├── init.lua │ └── visdom-scm-1.rockspec ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js