Metadata-Version: 2.4
Name: csv_jupyter_magic
Version: 1.1
Summary: Jupyter Magic zur einfachen Darstellung von CSV-Daten
Author-email: Andreas Thor <andreas.thor@htwk-leipzig.de>
License-Expression: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: pandas>=2.2.1
Description-Content-Type: text/markdown

# CSV-Jupyter-Magic

CSV-Jupyter-Magic ist eine IPython-Erweiterung, die das Jupyter Magic Command **csv** als Cell-Magic zur Verfügung stellt. Der Inhalt der Zelle wird als CSV-Daten intepretiert und als Tabelle visualisiert.


## Initialisiserung im Jupyter Notebook 

``pip install csv_jupyter_magic`` zum Installieren

``%load_ext csv_jupyter_magic`` zum Laden der Erweiterung

## Beispiel einer Nutzung

```python
%%csv
a,b,c
1,2,3
4,"5,6",7.8
``` 