pyeasyphd 0.3.12__py3-none-any.whl → 0.3.15__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.

Potentially problematic release.


This version of pyeasyphd might be problematic. Click here for more details.

Files changed (33) hide show
  1. pyeasyphd/data/templates/abbr_full/conferences.json +1 -0
  2. pyeasyphd/data/templates/abbr_full/journals.json +1 -0
  3. pyeasyphd/data/templates/abbr_full/keywords.json +1 -0
  4. pyeasyphd/main/basic_input.py +12 -12
  5. pyeasyphd/scripts/_base.py +6 -6
  6. pyeasyphd/scripts/run_article_md.py +4 -4
  7. pyeasyphd/scripts/run_article_tex.py +4 -4
  8. pyeasyphd/scripts/run_beamer_tex.py +4 -4
  9. pyeasyphd/scripts/run_compare.py +4 -4
  10. pyeasyphd/scripts/run_format.py +4 -4
  11. pyeasyphd/scripts/run_generate.py +10 -10
  12. pyeasyphd/scripts/run_search.py +14 -14
  13. {pyeasyphd-0.3.12.dist-info → pyeasyphd-0.3.15.dist-info}/METADATA +1 -1
  14. {pyeasyphd-0.3.12.dist-info → pyeasyphd-0.3.15.dist-info}/RECORD +31 -30
  15. pyeasyphd/data/Templates/TEX/eisvogel.beamer +0 -700
  16. pyeasyphd/data/Templates/TEX/eisvogel.latex +0 -1040
  17. /pyeasyphd/data/{Templates/CSL → templates/csl}/apa-no-ampersand.csl +0 -0
  18. /pyeasyphd/data/{Templates/CSL → templates/csl}/apa.csl +0 -0
  19. /pyeasyphd/data/{Templates/CSL → templates/csl}/ieee.csl +0 -0
  20. /pyeasyphd/data/{Templates/TEX → templates/tex}/Article.tex +0 -0
  21. /pyeasyphd/data/{Templates/TEX → templates/tex}/Article_Header.tex +0 -0
  22. /pyeasyphd/data/{Templates/TEX → templates/tex}/Article_Tail.tex +0 -0
  23. /pyeasyphd/data/{Templates/TEX → templates/tex}/Beamer_Header.tex +0 -0
  24. /pyeasyphd/data/{Templates/TEX → templates/tex}/Beamer_Tail.tex +0 -0
  25. /pyeasyphd/data/{Templates/TEX → templates/tex}/Style.tex +0 -0
  26. /pyeasyphd/data/{Templates/TEX → templates/tex}/TEVC_Header.tex +0 -0
  27. /pyeasyphd/data/{Templates/TEX → templates/tex}/TEVC_Tail.tex +0 -0
  28. /pyeasyphd/data/{Templates/TEX → templates/tex}/eisvogel.tex +0 -0
  29. /pyeasyphd/data/{Templates/TEX → templates/tex}/math.tex +0 -0
  30. /pyeasyphd/data/{Templates/TEX → templates/tex}/math_commands.tex +0 -0
  31. /pyeasyphd/data/{Templates/TEX → templates/tex}/nextaimathmacros.sty +0 -0
  32. {pyeasyphd-0.3.12.dist-info → pyeasyphd-0.3.15.dist-info}/WHEEL +0 -0
  33. {pyeasyphd-0.3.12.dist-info → pyeasyphd-0.3.15.dist-info}/licenses/LICENSE +0 -0
@@ -37,7 +37,7 @@ class BasicInput(BasicInputInPyBibtexer):
37
37
  super().__init__(options)
38
38
 
39
39
  current_dir = os.path.dirname(os.path.abspath(__file__))
40
- self._path_templates = os.path.join(os.path.dirname(current_dir), "data", "Templates")
40
+ self._path_templates = os.path.join(os.path.dirname(current_dir), "data", "templates")
41
41
 
42
42
  # main
43
43
  self._initialize_pandoc_md_to(options)
@@ -54,14 +54,14 @@ class BasicInput(BasicInputInPyBibtexer):
54
54
  csl_name = options.get("csl_name", "apa-no-ampersand")
55
55
  if not isinstance(csl_name, str):
56
56
  csl_name = "apa-no-ampersand"
57
- self.full_csl_style_pandoc = os.path.join(self._path_templates, "CSL", f"{csl_name}.csl")
57
+ self.full_csl_style_pandoc = os.path.join(self._path_templates, "csl", f"{csl_name}.csl")
58
58
  if not os.path.exists(self.full_csl_style_pandoc):
59
- self.full_csl_style_pandoc = os.path.join(self._path_templates, "CSL", "apa-no-ampersand.csl")
59
+ self.full_csl_style_pandoc = os.path.join(self._path_templates, "csl", "apa-no-ampersand.csl")
60
60
 
61
- self.full_tex_article_template_pandoc = os.path.join(self._path_templates, "TEX", "eisvogel.latex")
62
- self.full_tex_beamer_template_pandoc = os.path.join(self._path_templates, "TEX", "eisvogel.beamer")
61
+ self.full_tex_article_template_pandoc = os.path.join(self._path_templates, "tex", "eisvogel.latex")
62
+ self.full_tex_beamer_template_pandoc = os.path.join(self._path_templates, "tex", "eisvogel.beamer")
63
63
 
64
- self.article_template_tex = self._try_read_list("TEX", "Article.tex")
64
+ self.article_template_tex = self._try_read_list("tex", "Article.tex")
65
65
 
66
66
  def _initialize_python_run_tex(self, options: Dict[str, Any]) -> None:
67
67
  """Initialize Python LaTeX processing configuration.
@@ -69,12 +69,12 @@ class BasicInput(BasicInputInPyBibtexer):
69
69
  Args:
70
70
  options (Dict[str, Any]): Configuration options.
71
71
  """
72
- self.article_template_header_tex = self._try_read_list("TEX", "Article_Header.tex")
73
- self.article_template_tail_tex = self._try_read_list("TEX", "Article_Tail.tex")
74
- self.beamer_template_header_tex = self._try_read_list("TEX", "Beamer_Header.tex")
75
- self.beamer_template_tail_tex = self._try_read_list("TEX", "Beamer_Tail.tex")
76
- self.math_commands_tex = self._try_read_list("TEX", "math_commands.tex")
77
- self.usepackages_tex = self._try_read_list("TEX", "Style.tex")
72
+ self.article_template_header_tex = self._try_read_list("tex", "Article_Header.tex")
73
+ self.article_template_tail_tex = self._try_read_list("tex", "Article_Tail.tex")
74
+ self.beamer_template_header_tex = self._try_read_list("tex", "Beamer_Header.tex")
75
+ self.beamer_template_tail_tex = self._try_read_list("tex", "Beamer_Tail.tex")
76
+ self.math_commands_tex = self._try_read_list("tex", "math_commands.tex")
77
+ self.usepackages_tex = self._try_read_list("tex", "Style.tex")
78
78
 
79
79
  # handly preamble
80
80
  self.handly_preamble = options.get("handly_preamble", False)
@@ -17,7 +17,7 @@ def build_base_options(
17
17
  include_abbr_list: List[str],
18
18
  exclude_publisher_list: List[str],
19
19
  exclude_abbr_list: List[str],
20
- path_conferences_journals_json: str,
20
+ path_conf_j_jsons: str,
21
21
  ) -> Dict[str, Any]:
22
22
  """
23
23
  Build options dictionary with common configuration.
@@ -27,20 +27,20 @@ def build_base_options(
27
27
  include_abbr_list: List of conference/journal abbreviations to include
28
28
  exclude_publisher_list: List of publishers to exclude
29
29
  exclude_abbr_list: List of conference/journal abbreviations to exclude
30
- path_conferences_journals_json: Base path for conferences/journals JSON files
30
+ path_conf_j_jsons: Base path for conferences/journals JSON files
31
31
 
32
32
  Returns:
33
33
  Dictionary containing configured options
34
34
  """
35
- path_conferences_journals_json = expand_path(path_conferences_journals_json)
35
+ path_conf_j_jsons = expand_path(path_conf_j_jsons)
36
36
  return {
37
37
  "include_publisher_list": include_publisher_list,
38
38
  "include_abbr_list": include_abbr_list,
39
39
  "exclude_publisher_list": exclude_publisher_list,
40
40
  "exclude_abbr_list": exclude_abbr_list,
41
- "full_json_c": os.path.join(path_conferences_journals_json, "conferences.json"),
42
- "full_json_j": os.path.join(path_conferences_journals_json, "journals.json"),
43
- "full_json_k": os.path.join(path_conferences_journals_json, "keywords.json"),
41
+ "full_json_c": os.path.join(path_conf_j_jsons, "conferences.json"),
42
+ "full_json_j": os.path.join(path_conf_j_jsons, "journals.json"),
43
+ "full_json_k": os.path.join(path_conf_j_jsons, "keywords.json"),
44
44
  }
45
45
 
46
46
 
@@ -8,7 +8,7 @@ def run_article_md_daily_notes(
8
8
  input_file_names: list[str],
9
9
  path_output_file: str,
10
10
  bib_path_or_file: str,
11
- path_conferences_journals_json: str,
11
+ path_conf_j_jsons: str,
12
12
  options: dict
13
13
  ) -> None:
14
14
  """
@@ -19,7 +19,7 @@ def run_article_md_daily_notes(
19
19
  input_file_names (list[str]): List of input file names
20
20
  path_output_file (str): Path to output directory
21
21
  bib_path_or_file (str): Path to bibliography file or directory
22
- path_conferences_journals_json (str): Path to conferences and journals JSON files directory
22
+ path_conf_j_jsons (str): Path to conferences and journals JSON files directory
23
23
  options (dict): Additional options to override default settings
24
24
 
25
25
  Returns:
@@ -30,8 +30,8 @@ def run_article_md_daily_notes(
30
30
 
31
31
  # Initialize default options with detailed descriptions
32
32
  _options = {
33
- "full_json_c": os.path.expanduser(os.path.join(path_conferences_journals_json, "conferences.json")),
34
- "full_json_j": os.path.expanduser(os.path.join(path_conferences_journals_json, "journals.json")),
33
+ "full_json_c": os.path.expanduser(os.path.join(path_conf_j_jsons, "conferences.json")),
34
+ "full_json_j": os.path.expanduser(os.path.join(path_conf_j_jsons, "journals.json")),
35
35
 
36
36
  # figure options
37
37
  "includegraphics_figs_directory": "",
@@ -10,7 +10,7 @@ def run_article_tex_submit(
10
10
  input_file_names: list[str],
11
11
  path_output_file: str,
12
12
  bib_path_or_file: str,
13
- path_conferences_journals_json: str,
13
+ path_conf_j_jsons: str,
14
14
  options: dict
15
15
  ) -> None:
16
16
  """
@@ -26,7 +26,7 @@ def run_article_tex_submit(
26
26
  input_file_names (list[str]): List of input file names
27
27
  path_output_file (str): Path to output directory
28
28
  bib_path_or_file (str): Path to bibliography file or directory
29
- path_conferences_journals_json (str): Path to conferences and journals JSON files directory
29
+ path_conf_j_jsons (str): Path to conferences and journals JSON files directory
30
30
  options (dict): Additional options to override default settings
31
31
 
32
32
  Returns:
@@ -37,8 +37,8 @@ def run_article_tex_submit(
37
37
 
38
38
  # Initialize default options with detailed descriptions
39
39
  _options = {
40
- "full_json_c": os.path.expanduser(os.path.join(path_conferences_journals_json, "conferences.json")),
41
- "full_json_j": os.path.expanduser(os.path.join(path_conferences_journals_json, "journals.json")),
40
+ "full_json_c": os.path.expanduser(os.path.join(path_conf_j_jsons, "conferences.json")),
41
+ "full_json_j": os.path.expanduser(os.path.join(path_conf_j_jsons, "journals.json")),
42
42
 
43
43
  # figure options
44
44
  "includegraphics_figs_directory": os.path.join(path_input_file, "data", "raw"),
@@ -8,7 +8,7 @@ def run_beamer_tex_weekly_reports(
8
8
  input_file_names: list[str],
9
9
  path_output_file: str,
10
10
  bib_path_or_file: str,
11
- path_conferences_journals_json: str,
11
+ path_conf_j_jsons: str,
12
12
  options: dict
13
13
  ) -> None:
14
14
  """
@@ -24,7 +24,7 @@ def run_beamer_tex_weekly_reports(
24
24
  input_file_names (list[str]): List of input file names
25
25
  path_output_file (str): Path to output directory
26
26
  bib_path_or_file (str): Path to bibliography file or directory
27
- path_conferences_journals_json (str): Path to conferences and journals JSON files directory
27
+ path_conf_j_jsons (str): Path to conferences and journals JSON files directory
28
28
  options (dict): Additional options to override default settings
29
29
 
30
30
  Returns:
@@ -35,8 +35,8 @@ def run_beamer_tex_weekly_reports(
35
35
 
36
36
  # Initialize default options with detailed descriptions
37
37
  _options = {
38
- "full_json_c": os.path.expanduser(os.path.join(path_conferences_journals_json, "conferences.json")),
39
- "full_json_j": os.path.expanduser(os.path.join(path_conferences_journals_json, "journals.json")),
38
+ "full_json_c": os.path.expanduser(os.path.join(path_conf_j_jsons, "conferences.json")),
39
+ "full_json_j": os.path.expanduser(os.path.join(path_conf_j_jsons, "journals.json")),
40
40
 
41
41
  # figure options
42
42
  "includegraphics_figs_directory": "",
@@ -9,7 +9,7 @@ def run_compare_bib_with_local(
9
9
  path_output: str,
10
10
  path_spidered_bibs: str,
11
11
  path_spidering_bibs: str,
12
- path_conferences_journals_json: str,
12
+ path_conf_j_jsons: str,
13
13
  ) -> None:
14
14
  # Expand and normalize file paths
15
15
  need_compare_bib, path_output, path_spidered_bibs, path_spidering_bibs = expand_paths(
@@ -17,7 +17,7 @@ def run_compare_bib_with_local(
17
17
  )
18
18
 
19
19
  # Update options
20
- options_ = build_base_options([], [], ["arXiv"], [], path_conferences_journals_json)
20
+ options_ = build_base_options([], [], ["arXiv"], [], path_conf_j_jsons)
21
21
  options_["include_early_access"] = True
22
22
  options_.update(options)
23
23
 
@@ -30,7 +30,7 @@ def run_compare_bib_with_zotero(
30
30
  need_compare_bib: str,
31
31
  zotero_bib: str,
32
32
  path_output: str,
33
- path_conferences_journals_json: str,
33
+ path_conf_j_jsons: str,
34
34
  ) -> None:
35
35
  # Expand and normalize file paths
36
36
  need_compare_bib, zotero_bib, path_output = expand_paths(
@@ -38,7 +38,7 @@ def run_compare_bib_with_zotero(
38
38
  )
39
39
 
40
40
  # Update options
41
- options_ = build_base_options([], [], ["arXiv"], [], path_conferences_journals_json)
41
+ options_ = build_base_options([], [], ["arXiv"], [], path_conf_j_jsons)
42
42
  options_.update(options)
43
43
 
44
44
  # Compare
@@ -9,13 +9,13 @@ def run_format_bib_to_save_by_entry_type(
9
9
  options: dict,
10
10
  need_format_bib: str,
11
11
  path_output: str,
12
- path_conferences_journals_json: str,
12
+ path_conf_j_jsons: str,
13
13
  ) -> None:
14
14
  # Expand and normalize file paths
15
15
  need_format_bib, path_output = expand_paths(need_format_bib, path_output)
16
16
 
17
17
  # Update options
18
- options_ = build_base_options([], [], [], [], path_conferences_journals_json)
18
+ options_ = build_base_options([], [], [], [], path_conf_j_jsons)
19
19
  options_.update(options)
20
20
 
21
21
  format_bib_to_save_mode_by_entry_type(Path(need_format_bib).stem, path_output, need_format_bib, options=options_)
@@ -25,13 +25,13 @@ def run_format_bib_to_abbr_zotero_save(
25
25
  options: dict,
26
26
  need_format_bib: str,
27
27
  path_output: str,
28
- path_conferences_journals_json: str,
28
+ path_conf_j_jsons: str,
29
29
  ) -> None:
30
30
  # Expand and normalize file paths
31
31
  need_format_bib, path_output = expand_paths(need_format_bib, path_output)
32
32
 
33
33
  # Update options
34
- options_ = build_base_options([], [], [], [], path_conferences_journals_json)
34
+ options_ = build_base_options([], [], [], [], path_conf_j_jsons)
35
35
  options_.update(options)
36
36
 
37
37
  format_bib_to_abbr_zotero_save_modes(need_format_bib, path_output, options=options_)
@@ -11,13 +11,13 @@ def run_generate_j_weekly(
11
11
  path_weekly_docs: str,
12
12
  keywords_category_names: list[str],
13
13
  path_spidering_bibs: str,
14
- path_conferences_journals_json: str,
14
+ path_conf_j_jsons: str,
15
15
  ):
16
16
  # Expand and normalize file paths
17
17
  path_weekly_docs, path_spidering_bibs = expand_paths(path_weekly_docs, path_spidering_bibs)
18
18
 
19
19
  # Update options
20
- options_ = build_base_options([], [], ["arXiv"], [], path_conferences_journals_json)
20
+ options_ = build_base_options([], [], ["arXiv"], [], path_conf_j_jsons)
21
21
  options_.update(options)
22
22
 
23
23
  # Generate md and html files
@@ -49,13 +49,13 @@ def run_generate_j_e_weekly(
49
49
  path_weekly_docs: str,
50
50
  keywords_category_names: list[str],
51
51
  path_spidering_bibs: str,
52
- path_conferences_journals_json: str,
52
+ path_conf_j_jsons: str,
53
53
  ):
54
54
  # Expand and normalize file paths
55
55
  path_weekly_docs, path_spidering_bibs = expand_paths(path_weekly_docs, path_spidering_bibs)
56
56
 
57
57
  # Update options
58
- options_ = build_base_options([], [], ["arXiv"], [], path_conferences_journals_json)
58
+ options_ = build_base_options([], [], ["arXiv"], [], path_conf_j_jsons)
59
59
  options_.update(options)
60
60
  options_["early_access"] = True
61
61
 
@@ -94,13 +94,13 @@ def run_generate_j_monthly(
94
94
  path_monthly_docs: str,
95
95
  keywords_category_names: list[str],
96
96
  path_spidering_bibs: str,
97
- path_conferences_journals_json: str,
97
+ path_conf_j_jsons: str,
98
98
  ):
99
99
  # Expand and normalize file paths
100
100
  path_monthly_docs, path_spidering_bibs = expand_paths(path_monthly_docs, path_spidering_bibs)
101
101
 
102
102
  # Update options
103
- options_ = build_base_options([], [], ["arXiv"], [], path_conferences_journals_json)
103
+ options_ = build_base_options([], [], ["arXiv"], [], path_conf_j_jsons)
104
104
  options_.update(options)
105
105
 
106
106
  # Generate md and html files
@@ -138,14 +138,14 @@ def run_generate_j_yearly(
138
138
  path_yearly_docs: str,
139
139
  keywords_category_names: list[str],
140
140
  path_spidered_bibs: str,
141
- path_conferences_journals_json: str,
141
+ path_conf_j_jsons: str,
142
142
  year_list: list[str],
143
143
  ):
144
144
  # Expand and normalize file paths
145
145
  path_yearly_docs, path_spidered_bibs = expand_paths(path_yearly_docs, path_spidered_bibs)
146
146
 
147
147
  # Update options
148
- options_ = build_base_options([], [], ["arXiv"], [], path_conferences_journals_json)
148
+ options_ = build_base_options([], [], ["arXiv"], [], path_conf_j_jsons)
149
149
  options_.update(options)
150
150
 
151
151
  # Generate md and html files
@@ -177,14 +177,14 @@ def run_generate_c_yearly(
177
177
  path_yearly_docs: str,
178
178
  keywords_category_names: list[str],
179
179
  path_spidered_bibs: str,
180
- path_conferences_journals_json: str,
180
+ path_conf_j_jsons: str,
181
181
  year_list: list[str],
182
182
  ):
183
183
  # Expand and normalize file paths
184
184
  path_yearly_docs, path_spidered_bibs = expand_paths(path_yearly_docs, path_spidered_bibs)
185
185
 
186
186
  # Update options
187
- options_ = build_base_options([], [], ["arXiv"], [], path_conferences_journals_json)
187
+ options_ = build_base_options([], [], ["arXiv"], [], path_conf_j_jsons)
188
188
  options_.update(options)
189
189
 
190
190
  # Generate md and html files
@@ -15,7 +15,7 @@ def run_search_for_screen(
15
15
  title: str,
16
16
  path_spidered_bibs: str,
17
17
  path_spidering_bibs: str,
18
- path_conferences_journals_json: str,
18
+ path_conf_j_jsons: str,
19
19
  ) -> None:
20
20
  """
21
21
  Run search for screen display with specific conference/journal parameters.
@@ -26,11 +26,11 @@ def run_search_for_screen(
26
26
  title: Paper title used as search keyword
27
27
  path_spidered_bibs: Path to spidered bibliography files
28
28
  path_spidering_bibs: Path to spidering bibliography files
29
- path_conferences_journals_json: Path to conferences/journals JSON files
29
+ path_conf_j_jsons: Path to conferences/journals JSON files
30
30
  """
31
31
  # Expand and normalize file paths
32
- path_spidered_bibs, path_spidering_bibs, path_conferences_journals_json = expand_paths(
33
- path_spidered_bibs, path_spidering_bibs, path_conferences_journals_json
32
+ path_spidered_bibs, path_spidering_bibs, path_conf_j_jsons = expand_paths(
33
+ path_spidered_bibs, path_spidering_bibs, path_conf_j_jsons
34
34
  )
35
35
 
36
36
  # Configure search options
@@ -40,7 +40,7 @@ def run_search_for_screen(
40
40
  include_abbr_list=[acronym],
41
41
  exclude_publisher_list=["arXiv"],
42
42
  exclude_abbr_list=[],
43
- path_conferences_journals_json=path_conferences_journals_json,
43
+ path_conf_j_jsons=path_conf_j_jsons,
44
44
  ),
45
45
  **build_search_options(
46
46
  print_on_screen=True, search_year_list=[str(year)], keywords_type="Temp", keywords_list_list=[[title]]
@@ -57,7 +57,7 @@ def run_search_for_files(
57
57
  path_main_output: str,
58
58
  path_spidered_bibs: str,
59
59
  path_spidering_bibs: str,
60
- path_conferences_journals_json: str,
60
+ path_conf_j_jsons: str,
61
61
  ) -> None:
62
62
  """
63
63
  Run search and save results to files with custom keywords.
@@ -68,12 +68,12 @@ def run_search_for_files(
68
68
  path_main_output: Main output directory for search results
69
69
  path_spidered_bibs: Path to spidered bibliography files
70
70
  path_spidering_bibs: Path to spidering bibliography files
71
- path_conferences_journals_json: Path to conferences/journals JSON files
71
+ path_conf_j_jsons: Path to conferences/journals JSON files
72
72
  """
73
73
  # Expand and normalize file paths
74
74
  path_main_output = expand_path(path_main_output)
75
- path_spidered_bibs, path_spidering_bibs, path_conferences_journals_json = expand_paths(
76
- path_spidered_bibs, path_spidering_bibs, path_conferences_journals_json
75
+ path_spidered_bibs, path_spidering_bibs, path_conf_j_jsons = expand_paths(
76
+ path_spidered_bibs, path_spidering_bibs, path_conf_j_jsons
77
77
  )
78
78
 
79
79
  # Configure search options
@@ -83,7 +83,7 @@ def run_search_for_files(
83
83
  include_abbr_list=[],
84
84
  exclude_publisher_list=["arXiv"],
85
85
  exclude_abbr_list=[],
86
- path_conferences_journals_json=path_conferences_journals_json,
86
+ path_conf_j_jsons=path_conf_j_jsons,
87
87
  ),
88
88
  **build_search_options(
89
89
  print_on_screen=False,
@@ -122,7 +122,7 @@ def _execute_searches(
122
122
 
123
123
 
124
124
  def run_compare_after_search(
125
- zotero_bib: str, keywords_type: str, path_main_output: str, path_conferences_journals_json: str
125
+ zotero_bib: str, keywords_type: str, path_main_output: str, path_conf_j_jsons: str
126
126
  ):
127
127
  """
128
128
  Compare search results with Zotero bibliography and generate comparison report.
@@ -131,12 +131,12 @@ def run_compare_after_search(
131
131
  zotero_bib: Path to Zotero bibliography file
132
132
  keywords_type: Category name for the search keywords used
133
133
  path_main_output: Main output directory for search results and comparison
134
- path_conferences_journals_json: Path to conferences/journals JSON files
134
+ path_conf_j_jsons: Path to conferences/journals JSON files
135
135
  """
136
136
  # Expand and normalize file paths
137
137
  zotero_bib = expand_path(zotero_bib)
138
138
  path_main_output = expand_path(path_main_output)
139
- path_conferences_journals_json = expand_path(path_conferences_journals_json)
139
+ path_conf_j_jsons = expand_path(path_conf_j_jsons)
140
140
 
141
141
  # Configure search options
142
142
  options = {
@@ -145,7 +145,7 @@ def run_compare_after_search(
145
145
  include_abbr_list=[],
146
146
  exclude_publisher_list=["arXiv"],
147
147
  exclude_abbr_list=[],
148
- path_conferences_journals_json=path_conferences_journals_json,
148
+ path_conf_j_jsons=path_conf_j_jsons,
149
149
  ),
150
150
  **build_search_options(
151
151
  print_on_screen=False, search_year_list=[], keywords_type=keywords_type, keywords_list_list=[]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyeasyphd
3
- Version: 0.3.12
3
+ Version: 0.3.15
4
4
  Summary: pyeasyphd
5
5
  License: GPL-3.0-or-later
6
6
  License-File: LICENSE
@@ -1,25 +1,26 @@
1
1
  pyeasyphd/.python-version,sha256=Auc1s9_hwygz61ULf_j_oX9fK8P6HnuuYaj1o4g845g,5
2
2
  pyeasyphd/Main.sublime-menu,sha256=TTGNg9MzL5_uz4SXvs2pTdQQNxk9dSJmbUkPjujfQls,1554
3
3
  pyeasyphd/__init__.py,sha256=tEypJy-Kmj6Oxpjh767NjkH5Ct0JF1Nhiw3D6-7I4E8,260
4
- pyeasyphd/data/Templates/CSL/apa-no-ampersand.csl,sha256=ndFDG38PUNyGYpvfGqx_KzoSIs0DXA4w0GHG3MgFV7E,86859
5
- pyeasyphd/data/Templates/CSL/apa.csl,sha256=S5OAu8zlZqzubySyR5c2FYDEzkTyuC9aRaJJlsygM8M,84591
6
- pyeasyphd/data/Templates/CSL/ieee.csl,sha256=SzU0l89ymSCtmpugSoz2S6uM3_GHvibFZwZewn7WVEA,17413
7
- pyeasyphd/data/Templates/TEX/Article.tex,sha256=M-vMXiHc2ncOTahtuY40s3flr2Ojo_-C8DDvLExMKbA,1264
8
- pyeasyphd/data/Templates/TEX/Article_Header.tex,sha256=41Wv1BcQMmvh5peKTPh3uK_tm7mOSBnrFqkO0JzlXKU,949
9
- pyeasyphd/data/Templates/TEX/Article_Tail.tex,sha256=1m7z4T6h8B8ylw3_4Q8_EOgzhyRRVSHgHrGZ6b5ut4k,35
10
- pyeasyphd/data/Templates/TEX/Beamer_Header.tex,sha256=AWzgGmosZBX-YRynsbCChu6iF97FKDp3iU1OvBWeoC4,3692
11
- pyeasyphd/data/Templates/TEX/Beamer_Tail.tex,sha256=88F75V0B8mP9naOEzM1S8PuEtYPdpZJAwxFQVVPP5K0,211
12
- pyeasyphd/data/Templates/TEX/Style.tex,sha256=CK_Uxf3MEKRhxWC0OnipkHrgQIO_I5CHPBQ_T5wXvog,9726
13
- pyeasyphd/data/Templates/TEX/TEVC_Header.tex,sha256=WPFIJLQNRsEcr5jxSw8rpc2gXJrMLie273yfwgEXAOU,1579
14
- pyeasyphd/data/Templates/TEX/TEVC_Tail.tex,sha256=FBoefRJsnJrH1-eRZfF68qu_lHjwYZhj-iFWBWfV4tw,86
15
- pyeasyphd/data/Templates/TEX/eisvogel.beamer,sha256=MMJ5pdxyyCGVpripIfc3sEtvkoB1n69KOm2knPKtbaA,19811
16
- pyeasyphd/data/Templates/TEX/eisvogel.latex,sha256=vxJKHEd7xPD3ie0DyeFO7Pp_-BofTBRM26XCqowXFdc,30060
17
- pyeasyphd/data/Templates/TEX/eisvogel.tex,sha256=9bDMPfUFjaHQZPCnYLwjsw5DfBtD04uzwfxvQa9nWuE,30748
18
- pyeasyphd/data/Templates/TEX/math.tex,sha256=y_8AJzjmCCX6xmZQ_yCcABqMLqufOeh54pafTvNyUIM,11030
19
- pyeasyphd/data/Templates/TEX/math_commands.tex,sha256=6ZQOletBnFRA6q6fU8TDVN4c9hDEdbmZuKnJgkgzq48,41513
20
- pyeasyphd/data/Templates/TEX/nextaimathmacros.sty,sha256=iF0jyABkoPUY_XA-lPkvZSlblFuWLX9ie82gRqY0Fks,41644
4
+ pyeasyphd/data/templates/abbr_full/conferences.json,sha256=yj0WO6sFU4GCciYUBWjzvvfqrBh869doeOC2Pp5EI1Y,3
5
+ pyeasyphd/data/templates/abbr_full/journals.json,sha256=yj0WO6sFU4GCciYUBWjzvvfqrBh869doeOC2Pp5EI1Y,3
6
+ pyeasyphd/data/templates/abbr_full/keywords.json,sha256=yj0WO6sFU4GCciYUBWjzvvfqrBh869doeOC2Pp5EI1Y,3
7
+ pyeasyphd/data/templates/csl/apa-no-ampersand.csl,sha256=ndFDG38PUNyGYpvfGqx_KzoSIs0DXA4w0GHG3MgFV7E,86859
8
+ pyeasyphd/data/templates/csl/apa.csl,sha256=S5OAu8zlZqzubySyR5c2FYDEzkTyuC9aRaJJlsygM8M,84591
9
+ pyeasyphd/data/templates/csl/ieee.csl,sha256=SzU0l89ymSCtmpugSoz2S6uM3_GHvibFZwZewn7WVEA,17413
10
+ pyeasyphd/data/templates/tex/Article.tex,sha256=M-vMXiHc2ncOTahtuY40s3flr2Ojo_-C8DDvLExMKbA,1264
11
+ pyeasyphd/data/templates/tex/Article_Header.tex,sha256=41Wv1BcQMmvh5peKTPh3uK_tm7mOSBnrFqkO0JzlXKU,949
12
+ pyeasyphd/data/templates/tex/Article_Tail.tex,sha256=1m7z4T6h8B8ylw3_4Q8_EOgzhyRRVSHgHrGZ6b5ut4k,35
13
+ pyeasyphd/data/templates/tex/Beamer_Header.tex,sha256=AWzgGmosZBX-YRynsbCChu6iF97FKDp3iU1OvBWeoC4,3692
14
+ pyeasyphd/data/templates/tex/Beamer_Tail.tex,sha256=88F75V0B8mP9naOEzM1S8PuEtYPdpZJAwxFQVVPP5K0,211
15
+ pyeasyphd/data/templates/tex/Style.tex,sha256=CK_Uxf3MEKRhxWC0OnipkHrgQIO_I5CHPBQ_T5wXvog,9726
16
+ pyeasyphd/data/templates/tex/TEVC_Header.tex,sha256=WPFIJLQNRsEcr5jxSw8rpc2gXJrMLie273yfwgEXAOU,1579
17
+ pyeasyphd/data/templates/tex/TEVC_Tail.tex,sha256=FBoefRJsnJrH1-eRZfF68qu_lHjwYZhj-iFWBWfV4tw,86
18
+ pyeasyphd/data/templates/tex/eisvogel.tex,sha256=9bDMPfUFjaHQZPCnYLwjsw5DfBtD04uzwfxvQa9nWuE,30748
19
+ pyeasyphd/data/templates/tex/math.tex,sha256=y_8AJzjmCCX6xmZQ_yCcABqMLqufOeh54pafTvNyUIM,11030
20
+ pyeasyphd/data/templates/tex/math_commands.tex,sha256=6ZQOletBnFRA6q6fU8TDVN4c9hDEdbmZuKnJgkgzq48,41513
21
+ pyeasyphd/data/templates/tex/nextaimathmacros.sty,sha256=iF0jyABkoPUY_XA-lPkvZSlblFuWLX9ie82gRqY0Fks,41644
21
22
  pyeasyphd/main/__init__.py,sha256=Pv-7359vftMgw3Wi_GuDy99K0TcY6hVwLkFFip774x8,224
22
- pyeasyphd/main/basic_input.py,sha256=w_4sHS-gOmk7j5dDKQjU0fxXLO2eM3UkvR7o1urgeAg,4607
23
+ pyeasyphd/main/basic_input.py,sha256=MttXPknpcw1PVucKvYKDVRnOXJrbi0UdGRWVvlURuvw,4607
23
24
  pyeasyphd/main/pandoc_md_to.py,sha256=5wRpuf4_ZR9XIRI4HkTcXPiXDwVpdKP3H1Eaf_D2yYQ,16974
24
25
  pyeasyphd/main/python_run_md.py,sha256=cqleE-kBGyYdUZIdT3zU58gxDK6oHiRmfvtGEHLG4sA,13923
25
26
  pyeasyphd/main/python_run_tex.py,sha256=9Syu8qRjPXN3gEabfRUWxwTFBm_izIcB4yFhsz3QNs0,7672
@@ -27,14 +28,14 @@ pyeasyphd/pyeasyphd.py,sha256=OAwbwq2rSXLSk2AoTAF8hmlOMRSRfvDn1Uqk-zkuqH8,3470
27
28
  pyeasyphd/pyeasyphd.sublime-settings,sha256=Bp_41iwVn23bCs1kC0R-XR8PChUF8btVGXfcwi5A_UU,3093
28
29
  pyeasyphd/pyeasyphd.sublime-syntax,sha256=pXylbA-tye-K5dCTjEJLFVRqtY1T7AgWZ4laxo-dnaE,73
29
30
  pyeasyphd/scripts/__init__.py,sha256=iZ5LfEIdN0IQHD9veiqk9Tooti1CHV0D64Nl3zed-gk,1134
30
- pyeasyphd/scripts/_base.py,sha256=v4RhrUBZ4Hz-tzhXwoVFSrtzlp6Ps9AL7EkXyWz3TOc,2428
31
- pyeasyphd/scripts/run_article_md.py,sha256=MR8Y6178GKdqwtdSvM2-13qHrdOBsp1WKZ1IsPTD4_A,4315
32
- pyeasyphd/scripts/run_article_tex.py,sha256=6ddtbLvPcrAt88X9gxiAHcvNV_i4x4IEnZQCWmmsGJI,3877
33
- pyeasyphd/scripts/run_beamer_tex.py,sha256=89o8OzuVKt9G3PV-3v6mQ6dXiau9VXW-6GW0OmsWXkk,3414
34
- pyeasyphd/scripts/run_compare.py,sha256=dNZxDy_mIqvOpOwB2xkLcF6VF1cf8J2yvWk-wrYJndU,1437
35
- pyeasyphd/scripts/run_format.py,sha256=-289mzLLNrPeBogQlc36Aw9AWMUkV3KwLc2QwkJtqYM,1215
36
- pyeasyphd/scripts/run_generate.py,sha256=RZ2683tZ5hi0VtHU_i2HqetHw5AhKSnUsO6clSxytSY,8679
37
- pyeasyphd/scripts/run_search.py,sha256=KPL-qACo_m20b8YU5MtlWB6Fe8c2IJOHpVUe_wcvV2k,8082
31
+ pyeasyphd/scripts/_base.py,sha256=Vm-CehgDng38jACb9KBzKkbyJuc_e5UjG06nIMi_l0o,2337
32
+ pyeasyphd/scripts/run_article_md.py,sha256=3jUPa5eWTtfOzBtwzl6ly1OAWfAR8v-uzwqXcj7aa8M,4263
33
+ pyeasyphd/scripts/run_article_tex.py,sha256=VJNXyRagM5a-iz_6pb54yb7lQfTOWxYY_lK4eU6jp5Y,3825
34
+ pyeasyphd/scripts/run_beamer_tex.py,sha256=GpUVSXINHkgJFIQe_k9qWElTxLmAVFNLJhvivjIdinI,3362
35
+ pyeasyphd/scripts/run_compare.py,sha256=uXqA5l4erCryuWx7eCz8b1H9Ed7CcPQYhb9Arxu6qJU,1385
36
+ pyeasyphd/scripts/run_format.py,sha256=zysDqQrSrmqZzt2wUd5lmnl9upbMa_grNg0mdfHhBaM,1163
37
+ pyeasyphd/scripts/run_generate.py,sha256=i8J3X3zn2QMuKUshu3FGpaq4kPw_P7TVXU46Wy_mZ8s,8549
38
+ pyeasyphd/scripts/run_search.py,sha256=YcOfBxcfuHfoEXLi6VVsfzHo72EMqSBRGb1eI1I8KOk,7848
38
39
  pyeasyphd/tools/__init__.py,sha256=u1MZu_JjVac3HhEmcSTwroS83UVu0W5Vspy3Wu_-GH8,496
39
40
  pyeasyphd/tools/generate/generate_from_bibs.py,sha256=Dp1MyADwIRb9qFTFOkMPJLaeeh7NBjuiSLBN7smP2eo,7640
40
41
  pyeasyphd/tools/generate/generate_html.py,sha256=JzUEqgTVCaFzd4hXTYUEf0cVSO1QRe0nVUS72W6oyyU,5349
@@ -48,7 +49,7 @@ pyeasyphd/tools/search/search_keywords.py,sha256=YCurXuoYeU1ftve0cb8Hcn_g2FXCXf7
48
49
  pyeasyphd/tools/search/search_writers.py,sha256=Dz6D8m17R7x8NT7_PCjwmzlq29AfUz-N6sjyCguDTo4,15702
49
50
  pyeasyphd/tools/search/utils.py,sha256=bo7xtIZu31dQvjol1lwyWq1t6ldbw28oondwK8VbAqk,7562
50
51
  pyeasyphd/utils/utils.py,sha256=kWxzzgNwz77K9Q7j-RKTaoPpxqiVLVtaBMMhLuEenwE,3128
51
- pyeasyphd-0.3.12.dist-info/METADATA,sha256=zAlZzJsVDLQ0K6iIyzY7N3SH78K9jaqFp7m0Xapqgm0,986
52
- pyeasyphd-0.3.12.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
53
- pyeasyphd-0.3.12.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
54
- pyeasyphd-0.3.12.dist-info/RECORD,,
52
+ pyeasyphd-0.3.15.dist-info/METADATA,sha256=PYIslupHHFzfoE2xbhCpqN9RfJ49rlr-nKTudJZBjDA,986
53
+ pyeasyphd-0.3.15.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
54
+ pyeasyphd-0.3.15.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
55
+ pyeasyphd-0.3.15.dist-info/RECORD,,