endnote-utils 0.1.0__tar.gz → 0.1.1__tar.gz

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.1
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(
@@ -1,4 +1,4 @@
1
- # EndNote Exporter
1
+ # EndNote Utils
2
2
 
3
3
  Convert **EndNote XML files** into clean CSVs with automatic TXT reports.
4
4
  Supports both **Python API** and **command-line interface (CLI)**.
@@ -25,19 +25,10 @@ Supports both **Python API** and **command-line interface (CLI)**.
25
25
 
26
26
  ## Installation
27
27
 
28
- ### From PyPI (recommended)
28
+ ### From PyPI
29
29
 
30
30
  ```bash
31
- pip install endnote-exporter
32
- ````
33
-
34
- ### From local source
35
-
36
- If you have the source code in a folder or `.zip`:
37
-
38
- ```bash
39
- cd /path/to/endnote-exporter
40
- pip install .
31
+ pip install endnote-utils
41
32
  ```
42
33
 
43
34
  Requires **Python 3.8+**.
@@ -51,19 +42,19 @@ Requires **Python 3.8+**.
51
42
  #### Single file
52
43
 
53
44
  ```bash
54
- endnote-xml-export --xml data/IEEE.xml --csv output/ieee.csv
45
+ endnote-utils --xml data/IEEE.xml --csv output/ieee.csv
55
46
  ```
56
47
 
57
48
  #### Folder with multiple files
58
49
 
59
50
  ```bash
60
- endnote-xml-export --folder data/xmls --csv output/all_records.csv
51
+ endnote-utils --folder data/xmls --csv output/all_records.csv
61
52
  ```
62
53
 
63
54
  #### Custom report path
64
55
 
65
56
  ```bash
66
- endnote-xml-export \
57
+ endnote-utils \
67
58
  --xml data/Scopus.xml \
68
59
  --csv output/scopus.csv \
69
60
  --report reports/scopus_run.txt
@@ -111,7 +102,7 @@ You can also use it directly in Python scripts:
111
102
 
112
103
  ```python
113
104
  from pathlib import Path
114
- from endnote_exporter import export, export_folder
105
+ from endnote_utils import export, export_folder
115
106
 
116
107
  # Single file
117
108
  total, csv_out, report_out = export(
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "endnote-utils"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Convert EndNote XML to CSV with streaming parse and TXT report."
9
9
  readme = { file = "README.md", content-type = "text/markdown" }
10
10
  requires-python = ">=3.8"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: endnote-utils
3
- Version: 0.1.0
3
+ Version: 0.1.1
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(
File without changes