convoviz 0.4.4__py3-none-any.whl → 0.4.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- convoviz/interactive.py +1 -1
- {convoviz-0.4.4.dist-info → convoviz-0.4.5.dist-info}/METADATA +14 -12
- {convoviz-0.4.4.dist-info → convoviz-0.4.5.dist-info}/RECORD +5 -5
- {convoviz-0.4.4.dist-info → convoviz-0.4.5.dist-info}/WHEEL +0 -0
- {convoviz-0.4.4.dist-info → convoviz-0.4.5.dist-info}/entry_points.txt +0 -0
convoviz/interactive.py
CHANGED
|
@@ -92,7 +92,7 @@ def run_interactive_config(initial_config: ConvovizConfig | None = None) -> Conv
|
|
|
92
92
|
input_default = str(config.input_path) if config.input_path else ""
|
|
93
93
|
input_result: str = _ask_or_cancel(
|
|
94
94
|
qst_path(
|
|
95
|
-
"Enter the path to the export ZIP, conversations JSON, or extracted directory:",
|
|
95
|
+
"Enter the path to the export ZIP:", # , conversations JSON, or extracted directory:",
|
|
96
96
|
default=input_default,
|
|
97
97
|
validate=_validate_input_path,
|
|
98
98
|
style=CUSTOM_STYLE,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: convoviz
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.5
|
|
4
4
|
Summary: Convert your ChatGPT export (ZIP) into clean Markdown text files with inline media, and generate data visualizations like word clouds and usage graphs.
|
|
5
5
|
Keywords: markdown,chatgpt,openai,visualization,analytics,json,export,data-analysis,obsidian
|
|
6
6
|
Author: Mohamed Cheikh Sidiya
|
|
@@ -194,6 +194,19 @@ Interested in contributing? Check out the **[Contributing Guide](https://github.
|
|
|
194
194
|
|
|
195
195
|
## 📝 Notes
|
|
196
196
|
|
|
197
|
+
<details>
|
|
198
|
+
<summary><strong>Offline</strong></summary>
|
|
199
|
+
|
|
200
|
+
Word clouds use NLTK stopwords. If you're offline and NLTK data isn't installed yet, pre-download it:
|
|
201
|
+
|
|
202
|
+
```bash
|
|
203
|
+
python -c "import nltk; nltk.download('stopwords')"
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
**NOTE:** The install script already handles this, so you can immediately go offline after running it.
|
|
207
|
+
|
|
208
|
+
</details>
|
|
209
|
+
|
|
197
210
|
<details>
|
|
198
211
|
<summary><strong>About This Project</strong></summary>
|
|
199
212
|
|
|
@@ -212,17 +225,6 @@ It should also work as a library, so you can import and use the models and funct
|
|
|
212
225
|
|
|
213
226
|
</details>
|
|
214
227
|
|
|
215
|
-
<details>
|
|
216
|
-
<summary><strong>Offline / Reproducible Runs</strong></summary>
|
|
217
|
-
|
|
218
|
-
Word clouds use NLTK stopwords. If you're offline and NLTK data isn't installed yet, pre-download it:
|
|
219
|
-
|
|
220
|
-
```bash
|
|
221
|
-
python -c "import nltk; nltk.download('stopwords')"
|
|
222
|
-
```
|
|
223
|
-
|
|
224
|
-
</details>
|
|
225
|
-
|
|
226
228
|
<details>
|
|
227
229
|
<summary><strong>Bookmarklet (Experimental)</strong></summary>
|
|
228
230
|
|
|
@@ -39,7 +39,7 @@ convoviz/assets/stopwords.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs
|
|
|
39
39
|
convoviz/cli.py,sha256=nniH7QPbbH_buQJGa35vd3IEl7RvZsWRiLpUuhlxXaI,5314
|
|
40
40
|
convoviz/config.py,sha256=qo4JPkJRx1UgvVN_x-XmycxdjU9XwPlqoZWJLsDMSAs,3592
|
|
41
41
|
convoviz/exceptions.py,sha256=bQpIKls48uOQpagEJAxpXf5LF7QoagRRfbD0MjWC7Ak,1476
|
|
42
|
-
convoviz/interactive.py,sha256=
|
|
42
|
+
convoviz/interactive.py,sha256=EckJqVKmqvqXOrnEg-q59F5y5F-0mePJhfAngmf2qpQ,8698
|
|
43
43
|
convoviz/io/__init__.py,sha256=y70TYypJ36_kaEA04E2wa1EDaKQVjprKItoKR6MMs4M,471
|
|
44
44
|
convoviz/io/assets.py,sha256=5zcZPlQa9niDw9o-sqJIKgLc0OJ9auzd6KAve5WfBkQ,3459
|
|
45
45
|
convoviz/io/loaders.py,sha256=SqmBWUBqT5lsCf01yy-FUhwIxbiKTFMQnj4k213DsGI,5891
|
|
@@ -56,7 +56,7 @@ convoviz/renderers/__init__.py,sha256=IQgwD9NqtUgbS9zwyPBNZbBIZcFrbZ9C7WMAV-X3Xd
|
|
|
56
56
|
convoviz/renderers/markdown.py,sha256=55PACkd-F0mmBXWXQ5SrfJr3UNrK_z2spQnePdk1UsQ,7849
|
|
57
57
|
convoviz/renderers/yaml.py,sha256=XG1s4VhDdx-TiqekTkgED87RZ1lVQ7IwrbA-sZHrs7k,4056
|
|
58
58
|
convoviz/utils.py,sha256=IQEKYHhWOnYxlr4GwAHoquG0BXTlVRkORL80oUSaIeQ,3417
|
|
59
|
-
convoviz-0.4.
|
|
60
|
-
convoviz-0.4.
|
|
61
|
-
convoviz-0.4.
|
|
62
|
-
convoviz-0.4.
|
|
59
|
+
convoviz-0.4.5.dist-info/WHEEL,sha256=fAguSjoiATBe7TNBkJwOjyL1Tt4wwiaQGtNtjRPNMQA,80
|
|
60
|
+
convoviz-0.4.5.dist-info/entry_points.txt,sha256=HYsmsw5vt36yYHB05uVU48AK2WLkcwshly7m7KKuZMY,54
|
|
61
|
+
convoviz-0.4.5.dist-info/METADATA,sha256=cq_PkqxhP9IOFEwVviir16PypsCGyJUlUXLogBg6s6U,7887
|
|
62
|
+
convoviz-0.4.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|