PyConsole
Fire up a python console in the browser
Was ist PyConsole?
PyConsole ist eine Chrome-Erweiterung, die von https://akuiper.com entwickelt wurde, und ihr Hauptmerkmal ist "Fire up a python console in the browser".
Erweiterungsscreenshots
PyConsole-Erweiterungs-CRX-Datei herunterladen
Laden Sie PyConsole-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
PyConsole is an extension which you can use to directly run python programs in the browser; It mimics the behavior of a normal REPL that you can launch in a terminal but aims to achieve more with the power of the browser environment. You can import popular data analysis libraries such numpy and pandas for data wrangling or just write normal python snippet for day to day tasks. You can even create beautiful visualizations directly in the console using the altair / matplotlib / plotly library. Pro tips: 1. In case you encounter a dead session, try start a new session by clicking the > icon. It will maintain all information from the current session. 2. Delete commands you don't like any more by clicking the trash icon to keep the session clean.
Grundlegende Informationen zur Erweiterung
Name | PyConsole |
ID | nmeljanfelkjifemaenfinpkbifpceoo |
Offizielle URL | https://chromewebstore.google.com/detail/pyconsole/nmeljanfelkjifemaenfinpkbifpceoo |
Beschreibung | Fire up a python console in the browser |
Dateigröße | 10.47 KB |
Installationsanzahl | 649 |
Aktuelle Version | 0.18.0 |
Letztes Update | 2023-04-30 |
Veröffentlichungsdatum | 2021-01-01 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://akuiper.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://akuiper.com |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "PyConsole", "description": "Fire up a python console in the browser", "version": "0.18.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": "icon128.png" }, "background": { "service_worker": "serviceworker.js" } } |