rosa0003 commited on
Commit
0c8ef90
·
verified ·
1 Parent(s): e61d53b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -13
README.md CHANGED
@@ -1,13 +1,31 @@
1
- ---
2
- title: MindMap
3
- emoji: 😻
4
- colorFrom: indigo
5
- colorTo: blue
6
- sdk: streamlit
7
- sdk_version: 1.39.0
8
- app_file: app.py
9
- pinned: false
10
- short_description: PDF to Mind Map
11
- ---
12
-
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # PdfToc2MindMap
2
+
3
+ Simple tool to convert PDF table of contents to popular mind map formats
4
+
5
+
6
+
7
+ # Installation
8
+
9
+ Automatic installation of dependencies:
10
+
11
+ ```sh
12
+ git clone https://github.com/mananatee/PdfToc2MindMap.git
13
+ pip install --process-dependency-links ./PdfToc2MindMap
14
+ ```
15
+
16
+ Manual installation of dependencies:
17
+
18
+ ```sh
19
+ # Install XMind Python SDK
20
+ git clone https://github.com/andrii-z4i/xmind-sdk-python.git
21
+ python xmind-sdk-python/setup.py install
22
+
23
+ # Install PDF miner (https://github.com/pdfminer/pdfminer.six)
24
+ pip install pdfminer.six
25
+ ```
26
+
27
+ # TODO
28
+
29
+ - [ ] support multiple mindmap formats
30
+ - [ ] add unit tests
31
+ - [ ] test with table of contents created by more pdf editors (currently only tested with PDF X-Change Editor)