endnote-utils 0.1.0__py3-none-any.whl → 0.1.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: endnote-utils
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Convert EndNote XML to CSV with streaming parse and TXT report.
5
5
  Author-email: Minh Quach <minhquach8@gmail.com>
6
6
  License: MIT
@@ -11,7 +11,7 @@ Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3.8
12
12
  Description-Content-Type: text/markdown
13
13
 
14
- # EndNote Exporter
14
+ # EndNote Utils
15
15
 
16
16
  Convert **EndNote XML files** into clean CSVs with automatic TXT reports.
17
17
  Supports both **Python API** and **command-line interface (CLI)**.
@@ -38,19 +38,10 @@ Supports both **Python API** and **command-line interface (CLI)**.
38
38
 
39
39
  ## Installation
40
40
 
41
- ### From PyPI (recommended)
41
+ ### From PyPI
42
42
 
43
43
  ```bash
44
- pip install endnote-exporter
45
- ````
46
-
47
- ### From local source
48
-
49
- If you have the source code in a folder or `.zip`:
50
-
51
- ```bash
52
- cd /path/to/endnote-exporter
53
- pip install .
44
+ pip install endnote-utils
54
45
  ```
55
46
 
56
47
  Requires **Python 3.8+**.
@@ -64,19 +55,19 @@ Requires **Python 3.8+**.
64
55
  #### Single file
65
56
 
66
57
  ```bash
67
- endnote-xml-export --xml data/IEEE.xml --csv output/ieee.csv
58
+ endnote-utils --xml data/IEEE.xml --csv output/ieee.csv
68
59
  ```
69
60
 
70
61
  #### Folder with multiple files
71
62
 
72
63
  ```bash
73
- endnote-xml-export --folder data/xmls --csv output/all_records.csv
64
+ endnote-utils --folder data/xmls --csv output/all_records.csv
74
65
  ```
75
66
 
76
67
  #### Custom report path
77
68
 
78
69
  ```bash
79
- endnote-xml-export \
70
+ endnote-utils \
80
71
  --xml data/Scopus.xml \
81
72
  --csv output/scopus.csv \
82
73
  --report reports/scopus_run.txt
@@ -124,7 +115,7 @@ You can also use it directly in Python scripts:
124
115
 
125
116
  ```python
126
117
  from pathlib import Path
127
- from endnote_exporter import export, export_folder
118
+ from endnote_utils import export, export_folder
128
119
 
129
120
  # Single file
130
121
  total, csv_out, report_out = export(
@@ -0,0 +1,8 @@
1
+ endnote-utils/__init__.py,sha256=yuPzjVRcBiQPUCFG5DbSvwqz1O42_hYJ3_7dzWotE20,284
2
+ endnote-utils/cli.py,sha256=TQxdO7IlaRXwNTm0MpBVk9CeUTUGgtlcI0O3O9xhgdM,2160
3
+ endnote-utils/core.py,sha256=cddpuRMF5RC5mp3Lll0eTA9MXLzcVDnDl1Z7IMHOr0k,7480
4
+ endnote_utils-0.1.2.dist-info/METADATA,sha256=YkoDvuhulrdLkiY3Nl_tTPbZSmno9hsxLpSfoKlIW3Y,4316
5
+ endnote_utils-0.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
6
+ endnote_utils-0.1.2.dist-info/entry_points.txt,sha256=l8OEYTGiRj49CND6Xmpk4cIlAE8WJg6UInRo-YRvg8w,57
7
+ endnote_utils-0.1.2.dist-info/top_level.txt,sha256=Bs12r-xSbXfACyOO_DFAg4TmG8xY_3iM4cx5skHB3-g,14
8
+ endnote_utils-0.1.2.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ endnote-utils = endnote_utils.cli:main
@@ -1,8 +0,0 @@
1
- endnote-utils/__init__.py,sha256=yuPzjVRcBiQPUCFG5DbSvwqz1O42_hYJ3_7dzWotE20,284
2
- endnote-utils/cli.py,sha256=TQxdO7IlaRXwNTm0MpBVk9CeUTUGgtlcI0O3O9xhgdM,2160
3
- endnote-utils/core.py,sha256=cddpuRMF5RC5mp3Lll0eTA9MXLzcVDnDl1Z7IMHOr0k,7480
4
- endnote_utils-0.1.0.dist-info/METADATA,sha256=oBeBNLi7xPptTfTk6FvjtLv576YK0FTGj4_zrWZhebw,4486
5
- endnote_utils-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
6
- endnote_utils-0.1.0.dist-info/entry_points.txt,sha256=1mpe6VMBMZwSGdNPdcDPMesi8QEovtEUtf-_slQF8g8,65
7
- endnote_utils-0.1.0.dist-info/top_level.txt,sha256=Bs12r-xSbXfACyOO_DFAg4TmG8xY_3iM4cx5skHB3-g,14
8
- endnote_utils-0.1.0.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- endnote-xml-export = endnote_exporter.cli:main