Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rmitsch/dh-knowledge-map
DH Education Knowledge Map - creating knowledge maps via hypertext
https://github.com/rmitsch/dh-knowledge-map
acdhhackathon2020 digital-humanities visualization wikipedia-api
Last synced: 2 days ago
JSON representation
DH Education Knowledge Map - creating knowledge maps via hypertext
- Host: GitHub
- URL: https://github.com/rmitsch/dh-knowledge-map
- Owner: rmitsch
- License: gpl-3.0
- Created: 2020-03-03T08:13:00.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-31T08:33:40.000Z (almost 5 years ago)
- Last Synced: 2024-12-29T10:44:32.034Z (5 days ago)
- Topics: acdhhackathon2020, digital-humanities, visualization, wikipedia-api
- Language: Python
- Homepage: https://medium.com/@marta.p/dh-education-knowledge-map-creating-knowledge-webs-via-hypertext-cfb6cc094c17
- Size: 300 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DH Education Knowledge Map - creating knowledge maps via hypertext
About this project: [DH Education Knowledge Map - creating knowledge maps via hypertext](https://medium.com/@marta.p/dh-education-knowledge-map-creating-knowledge-webs-via-hypertext-cfb6cc094c17).
### Setup Instructions
#### With conda
Change to source directory. Create environment, then run with
```bash
conda env create --name dhekm --file=environment.yml
conda activate dhekm
python exploration.py
```Open [http://0.0.0.0:8050](http://0.0.0.0:8050).
#### With Docker
_Downloading and running pre-built image from Docker hub_:
```bash
docker run -p 8050:8050 rmitsch/dh-knowledge-map python exploration.py
```
Open [http://0.0.0.0:8050](http://0.0.0.0:8050)._Building the image locally and running it_:
```bash
docker build -t dh-knowledge-map -f Dockerfile .
docker run -p 8050:8050 dh-knowledge-map python exploration.py
```
Open [http://0.0.0.0:8050](http://0.0.0.0:8050).