{"id":28343469,"url":"https://github.com/antl3x/codeplot","last_synced_at":"2025-10-04T02:34:04.253Z","repository":{"id":219010733,"uuid":"747899678","full_name":"antl3x/codeplot","owner":"antl3x","description":"▱ Codeplot is your infinity canvas for data exploration.","archived":false,"fork":false,"pushed_at":"2025-03-25T21:53:51.000Z","size":13633,"stargazers_count":28,"open_issues_count":0,"forks_count":6,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-08T11:33:39.053Z","etag":null,"topics":["data-science","data-visualization","dataframe","matplotlib","pandas","python"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/antl3x.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-01-24T21:27:24.000Z","updated_at":"2025-07-04T08:21:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"5c9c9d84-023b-4868-b9b0-4325a3d6dc72","html_url":"https://github.com/antl3x/codeplot","commit_stats":null,"previous_names":["codeplot-co/codeplot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/antl3x/codeplot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antl3x%2Fcodeplot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antl3x%2Fcodeplot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antl3x%2Fcodeplot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antl3x%2Fcodeplot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/antl3x","download_url":"https://codeload.github.com/antl3x/codeplot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antl3x%2Fcodeplot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265947505,"owners_count":23853382,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-science","data-visualization","dataframe","matplotlib","pandas","python"],"created_at":"2025-05-27T07:17:34.289Z","updated_at":"2025-10-04T02:33:59.208Z","avatar_url":"https://github.com/antl3x.png","language":"TypeScript","readme":"![codeplot-readme](https://github.com/codeplot-co/codeplot/assets/26308297/e1212d25-a731-4755-875d-e988848f6d87)\n\u003cdiv align=\"center\"\u003e\n\u003ca href=\"https://codeplot.co\"\u003eDemo\u003c/a\u003e \n\u003cspan\u003e · \u003c/span\u003e\n\u003ca href=\"https://codeplot.co/discord\"\u003eDiscord\u003c/a\u003e\n\u003c/div\u003e\n\n---\n\n**Codeplot is an infinity canvas for data exploration.**\n\nThink of it as Figma, but for data teams. \n\nDive in, plot your data, and boost your productivity. \n\nIt's data analysis without the scroll.\n\nYour go-to tool for an amazing Exploratory Data Analysis workflow.\n\nCreated by [@antl3x](https://github.com/antl3x), [read more](https://antl3x.co/posts/2024-01-25-today-i-decided-to-create-a-tool-that-i-always-wanted/) about its inception.\n\n# Video Demo\n[![Watch the video](https://img.youtube.com/vi/x7QLEu5t17g/maxresdefault.jpg)](https://youtu.be/x7QLEu5t17g)\n\n**Why Choose codeplot?**\n\n- **Dynamic Visualization**: Break free from static images and rigid layouts. codeplot brings your data to life on an interactive canvas.\n  \n- **Easy Integration**: Directly plot from your Python code or REPL into your canvas at [codeplot.co](https://codeplot.co).\n  \n- **Varied Visualizations**: From basic charts to advanced widgets, codeplot supports a wide range of data representations.\n  \n- **Flexible Layouts**: Arrange your visualizations to suit your workflow, with draggable and movable plots.\n  \n- **Open to Everyone**: Designed for data scientists and enthusiasts alike, codeplot aims to enhance your data exploration experience.\n\n# Getting Started (IPython Extension)\nTo use codeplot in a IPython environment like Jupyter, Google Colab, etc, you can install the IPython Extension using pip:\n\n```bash\npip install codeplot-ipython\n```\n\nAfter install you can load the extension and connect to a new room:\n\n```python\n%load_ext codeplot-ipython\n%cP_connect ws://your-ws-url/your-room-id\n```\n\nNow the output of your cells will be automatically plotted in the codeplot canvas! So you don't need to use the `cP.plot` function.\n\nTake a look at [the Notebook Example](/examples/Demo%20Notebook.ipynb)\n\nThats all!\n\n# Getting Started (Python SDK)\n\nIf you want to use codeplot in a Python script, and have a more \"fine-grained\" control over the plots, you can use the Python SDK.\n\nTo get started with codeplot, you can install the package using pip:\n\n```bash\npip install codeplot\n```\n\nOnce installed, you can start using codeplot by importing the package and connectig to a new room:\n\n```python\nimport asyncio\nimport codeplot\n\nasync def main():\n    cP = await codeplot.connect(\"ws://your-ws-url/your-room-id\")\n\n    # Now you can start plotting\n    await cP.plot(df.describe())\n    await cP.plot(df.head(10))\n    await cP.plot(df)\n\nasyncio.run(main())\n```\n\nTake a look at [the Notebook (SDK Example)](/examples/Demo%20Notebook%20(SDK).ipynb)\n\n---\n\n## Demo - codeplot.co\n\nYou can use the public codeplot client \u0026 server to start plotting right away:\n\n1. Join the codeplot room at [codeplot.co](https://codeplot.co)\n2. Use the room id to connect to the room using the code above\n\n\n\n# Run Codeplot on Docker\n\nInstead of using the public codeplot server, you can self-host and run codeplot on your local machine using Docker. To do so, you can use the following command:\n\n```bash\ncurl -s https://raw.githubusercontent.com/codeplot-co/codeplot/master/minirepos/@codeplot-docker/docker-compose.yaml | docker-compose -f - up\n```\n\nOr if you are using docker-compose v2, you can use the following command instead\n\n```bash\ncurl -s https://raw.githubusercontent.com/codeplot-co/codeplot/master/minirepos/@codeplot-docker/docker-compose.yaml | docker compose -f - up\n```\n\nThis will start a codeplot server and a client on your local machine, and you can access it at:\n\n- Client: [http://localhost:9107](http://localhost:9107)\n- Server: [ws://localhost:9108](ws://localhost:9108)\n\n**Join the codeplot Community**\n\nBecome part of a forward-thinking community dedicated to advancing data visualization. Connect, engage, and grow with peers on **[Discord](https://codeplot.co/discord)**. With codeplot, data visualization is a shared journey. Let's explore new insights together!\n\n# License\n\nCodeplot is open source software licensed under the Apache License 2.0. This means you can use, modify, and distribute the software for any purpose, including commercial use. See the [LICENSE](LICENSE) file for details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantl3x%2Fcodeplot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fantl3x%2Fcodeplot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantl3x%2Fcodeplot/lists"}