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

@@ -28,7 +28,6 @@ class PandocMdTo(BasicInput):
28
28
  markdown_name (str): Markdown name. Defaults to "multi-markdown".
29
29
  markdown_citation (str): Markdown citation format. Defaults to "markdown_mmd".
30
30
  columns_in_md (int): Number of columns in markdown. Defaults to 120.
31
- google_connected_paper_scite (bool): Whether to use Google connected paper scite. Defaults to True.
32
31
  display_one_line_reference_note (bool): Whether to display one line reference note. Defaults to False.
33
32
  cite_flag_in_tex (str): Citation flag in LaTeX. Defaults to "cite".
34
33
  add_url_for_basic_dict (bool): Whether to add url for items in basic dict. Defualts to True.
@@ -51,7 +50,6 @@ class PandocMdTo(BasicInput):
51
50
  self.markdown_citation = "markdown-citations"
52
51
 
53
52
  self.columns_in_md: int = options.get("columns_in_md", 120)
54
- self.google_connected_paper_scite: bool = options.get("google_connected_paper_scite", True)
55
53
  self.display_one_line_reference_note: bool = options.get("display_one_line_reference_note", False)
56
54
  # tex
57
55
  self.cite_flag_in_tex: str = options.get("cite_flag_in_tex", "cite")
@@ -317,9 +315,6 @@ class PandocMdTo(BasicInput):
317
315
  aa: List[str] = key_url_http_bib_dict[k][0]
318
316
  bb: List[str] = key_url_http_bib_dict[k][1]
319
317
 
320
- if (not self.google_connected_paper_scite) and aa:
321
- bb = [f"([www]({aa[0].strip()}))\n"]
322
-
323
318
  # add url
324
319
  if self.add_url_for_basic_dict:
325
320
  a.extend(aa)
@@ -5,7 +5,6 @@
5
5
  // the number of columns in md files
6
6
  "columns_in_md": 120,
7
7
  // display one line reference note
8
- "google_connected_paper_scite": true,
9
8
  "display_one_line_reference_note": false,
10
9
  // "fullcite", "cite"
11
10
  "cite_flag_in_tex": "cite",
@@ -68,6 +68,9 @@ def run_article_md_daily_notes(
68
68
  "generate_tex": False,
69
69
 
70
70
  # md options
71
+ # ["www", "google", "connected", "scite"]
72
+ "display_www_google_connected_scite": ["google", "connected"], # python_writers.py
73
+
71
74
  "add_url_for_basic_dict": False, # default is True
72
75
  "add_anchor_for_basic_dict": False, # default is False
73
76
  "add_anchor_for_beauty_dict": True, # default is False
@@ -78,8 +81,8 @@ def run_article_md_daily_notes(
78
81
  "add_reference_in_md": True,
79
82
  "add_bib_in_md": False,
80
83
  "replace_cite_to_fullcite_in_md": True,
81
- "replace_by_basic_beauty_complex_in_md": "basic",
82
- "display_basic_beauty_complex_references_in_md": "beauty",
84
+ "replace_by_basic_beauty_complex_in_md": "beauty", # default is "basic"
85
+ "display_basic_beauty_complex_references_in_md": "basic", # default is "beauty"
83
86
  "add_anchor_in_md": True, # default is False
84
87
 
85
88
  "md_folder_name": "mds", # "" or "md" or "main"
@@ -74,24 +74,6 @@ def run_article_tex_submit(
74
74
  "delete_original_tex_in_output_folder": True,
75
75
  "generate_tex": True,
76
76
 
77
- # md options
78
- "add_url_for_basic_dict": True, # default is True
79
- "add_anchor_for_basic_dict": False, # default is False
80
- "add_anchor_for_beauty_dict": False, # default is False
81
- "add_anchor_for_complex_dict": False, # default is False
82
-
83
- "final_output_main_md_name": "main.md",
84
- "delete_temp_generate_md": True,
85
- "add_reference_in_md": True,
86
- "add_bib_in_md": False,
87
- "replace_cite_to_fullcite_in_md": True,
88
- "replace_by_basic_beauty_complex_in_md": "basic",
89
- "display_basic_beauty_complex_references_in_md": "beauty",
90
- "add_anchor_in_md": False, # default is False
91
-
92
- "md_folder_name": "mds", # "" or "md" or "main"
93
- "delete_original_md_in_output_folder": False, # default is False
94
-
95
77
  # html options
96
78
  "generate_html": False,
97
79
  }
@@ -72,24 +72,6 @@ def run_beamer_tex_weekly_reports(
72
72
  "delete_original_tex_in_output_folder": True, # default is False
73
73
  "generate_tex": True,
74
74
 
75
- # md options
76
- "add_url_for_basic_dict": True, # default is True
77
- "add_anchor_for_basic_dict": False, # default is False
78
- "add_anchor_for_beauty_dict": False, # default is False
79
- "add_anchor_for_complex_dict": False, # default is False
80
-
81
- "final_output_main_md_name": "main.md",
82
- "delete_temp_generate_md": True,
83
- "add_reference_in_md": True,
84
- "add_bib_in_md": False,
85
- "replace_cite_to_fullcite_in_md": True,
86
- "replace_by_basic_beauty_complex_in_md": "basic",
87
- "display_basic_beauty_complex_references_in_md": "beauty",
88
- "add_anchor_in_md": False, # default is False
89
-
90
- "md_folder_name": "mds", # "" or "md" or "main"
91
- "delete_original_md_in_output_folder": False, # default is False
92
-
93
75
  # html options
94
76
  "generate_html": False,
95
77
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyeasyphd
3
- Version: 0.3.10
3
+ Version: 0.3.11
4
4
  Summary: pyeasyphd
5
5
  License: GPL-3.0-or-later
6
6
  License-File: LICENSE
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.13
17
17
  Classifier: Programming Language :: Python :: 3.14
18
18
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
19
19
  Requires-Dist: pyadvtools (>=0.2.4,<0.3.0)
20
- Requires-Dist: pybibtexer (>=0.2.1,<0.3.0)
20
+ Requires-Dist: pybibtexer (>=0.2.3,<0.3.0)
21
21
  Project-URL: Documentation, https://github.com/Easy-PhD/pyeasyphd
22
22
  Project-URL: Homepage, https://github.com/Easy-PhD/pyeasyphd
23
23
  Project-URL: Repository, https://github.com/Easy-PhD/pyeasyphd
@@ -20,17 +20,17 @@ pyeasyphd/data/Templates/TEX/math_commands.tex,sha256=6ZQOletBnFRA6q6fU8TDVN4c9h
20
20
  pyeasyphd/data/Templates/TEX/nextaimathmacros.sty,sha256=iF0jyABkoPUY_XA-lPkvZSlblFuWLX9ie82gRqY0Fks,41644
21
21
  pyeasyphd/main/__init__.py,sha256=Pv-7359vftMgw3Wi_GuDy99K0TcY6hVwLkFFip774x8,224
22
22
  pyeasyphd/main/basic_input.py,sha256=w_4sHS-gOmk7j5dDKQjU0fxXLO2eM3UkvR7o1urgeAg,4607
23
- pyeasyphd/main/pandoc_md_to.py,sha256=9nJImQsGsJESMAQaqashXNZGXmBCE0-_sAKGeA9nKK0,17299
23
+ pyeasyphd/main/pandoc_md_to.py,sha256=5wRpuf4_ZR9XIRI4HkTcXPiXDwVpdKP3H1Eaf_D2yYQ,16974
24
24
  pyeasyphd/main/python_run_md.py,sha256=cqleE-kBGyYdUZIdT3zU58gxDK6oHiRmfvtGEHLG4sA,13923
25
25
  pyeasyphd/main/python_run_tex.py,sha256=9Syu8qRjPXN3gEabfRUWxwTFBm_izIcB4yFhsz3QNs0,7672
26
26
  pyeasyphd/pyeasyphd.py,sha256=OAwbwq2rSXLSk2AoTAF8hmlOMRSRfvDn1Uqk-zkuqH8,3470
27
- pyeasyphd/pyeasyphd.sublime-settings,sha256=KcXx3DjyVf8UfnB4FP4u-jaTQU3Cuj24OvxGCZvXAsw,3135
27
+ pyeasyphd/pyeasyphd.sublime-settings,sha256=Bp_41iwVn23bCs1kC0R-XR8PChUF8btVGXfcwi5A_UU,3093
28
28
  pyeasyphd/pyeasyphd.sublime-syntax,sha256=pXylbA-tye-K5dCTjEJLFVRqtY1T7AgWZ4laxo-dnaE,73
29
29
  pyeasyphd/scripts/__init__.py,sha256=iZ5LfEIdN0IQHD9veiqk9Tooti1CHV0D64Nl3zed-gk,1134
30
30
  pyeasyphd/scripts/_base.py,sha256=v4RhrUBZ4Hz-tzhXwoVFSrtzlp6Ps9AL7EkXyWz3TOc,2428
31
- pyeasyphd/scripts/run_article_md.py,sha256=ZjdO03YRDokSqo-Rffby-1p6_P35N4amERKHe4yS6_0,4127
32
- pyeasyphd/scripts/run_article_tex.py,sha256=TuTEQk7y-Ykos3a_mlEJzyFnT9RKsAYjGXnwHJa5cjY,4672
33
- pyeasyphd/scripts/run_beamer_tex.py,sha256=UUOadRfmyWGfK__9NzJIUo1lAiDRB5edxRsfhrS3Ejo,4209
31
+ pyeasyphd/scripts/run_article_md.py,sha256=qNDGJkZUCDDbSjMZmSsl9ogBqmVx7Gv85om3jlE8Ozs,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
34
  pyeasyphd/scripts/run_compare.py,sha256=dNZxDy_mIqvOpOwB2xkLcF6VF1cf8J2yvWk-wrYJndU,1437
35
35
  pyeasyphd/scripts/run_format.py,sha256=-289mzLLNrPeBogQlc36Aw9AWMUkV3KwLc2QwkJtqYM,1215
36
36
  pyeasyphd/scripts/run_generate.py,sha256=RZ2683tZ5hi0VtHU_i2HqetHw5AhKSnUsO6clSxytSY,8679
@@ -48,7 +48,7 @@ pyeasyphd/tools/search/search_keywords.py,sha256=YCurXuoYeU1ftve0cb8Hcn_g2FXCXf7
48
48
  pyeasyphd/tools/search/search_writers.py,sha256=Dz6D8m17R7x8NT7_PCjwmzlq29AfUz-N6sjyCguDTo4,15702
49
49
  pyeasyphd/tools/search/utils.py,sha256=bo7xtIZu31dQvjol1lwyWq1t6ldbw28oondwK8VbAqk,7562
50
50
  pyeasyphd/utils/utils.py,sha256=kWxzzgNwz77K9Q7j-RKTaoPpxqiVLVtaBMMhLuEenwE,3128
51
- pyeasyphd-0.3.10.dist-info/METADATA,sha256=6MIQRik0Rs5kQv9u-FM2i7w5jOI8OoBZp7zKJHY8SmE,986
52
- pyeasyphd-0.3.10.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
53
- pyeasyphd-0.3.10.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
54
- pyeasyphd-0.3.10.dist-info/RECORD,,
51
+ pyeasyphd-0.3.11.dist-info/METADATA,sha256=Jf-12wYsJfJbgr_DVDV11ZzV0YE6m_tqckeOgClTEQA,986
52
+ pyeasyphd-0.3.11.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
53
+ pyeasyphd-0.3.11.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
54
+ pyeasyphd-0.3.11.dist-info/RECORD,,