Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gbv/vzg.jconv-example
Ein Beispiel, wie eine Konvertierung in das VZG JSON-Format aussehen kann
https://github.com/gbv/vzg.jconv-example
Last synced: 19 days ago
JSON representation
Ein Beispiel, wie eine Konvertierung in das VZG JSON-Format aussehen kann
- Host: GitHub
- URL: https://github.com/gbv/vzg.jconv-example
- Owner: gbv
- License: agpl-3.0
- Created: 2020-04-20T12:45:29.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-05T08:03:40.000Z (over 4 years ago)
- Last Synced: 2024-11-10T03:17:36.401Z (3 months ago)
- Language: Jupyter Notebook
- Size: 242 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Beispiel-Notebook für eine Konvertierung in das VZG JSON Austauschformat
Das Beispiel-Notebook befindet sich in der Datei [example.ipynb](example.ipynb)
## Lokale Installation
Das Beispiel liegt in Form eines [Jupyter](https://jupyter.org "Jupyter Homepage") Notebooks vor.
Falls man das Notebook selbst ausführen möchte, benötigt man z.B. eine lokale Jupyter Instanz.
Diese lässt sich recht simpel mithilfe einer virtuellen Python Umgebung erstellen.Der Python-Interpreter muss mindestens in der Version 3.6 oder höher vorliegen.
### Jupyter Installation auf einem Linux-System, z.B. Ubuntu
Welche Python Version ist installiert?
```bash
python3 --version
```Erzeugen einer virtuellen Python Umgebung im Heimat-Verzeichnis
```bash
cd $HOME
python3 -m venv jupyter
```Vor jedem benutzen der virtuellen Umgebung muss diese einmal pro Sitzung aktiviert werden.
```bash
cd $HOME/jupyter
source bin/activate
```Jupyter innerhalb der virtuellen Umgebung installieren
```bash
pip install jupyterlab
```Danach am besten einen eigenen Bereich für die Notebooks anlegen
```bash
mkdir $HOME/jupyter/notebooks
```### vzg.jconv Modul installieren
```bash
cd $HOME/jupyter
pip install vzg.jconv
```### Beispiel Notebook installieren
```bash
cd $HOME/jupyter/notebooks
git clone https://github.com/gbv/vzg.jconv-example.git
```
### Jupyter starten und das Notebook benutzen```bash
cd $HOME/jupyter/notebooks/vzg.jconv-example
jupyter lab
```
Dieser Aufruf wird das Notebook im Browser öffnen.