pyeasyphd 0.2.0__py3-none-any.whl → 0.2.1__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.
|
@@ -15,6 +15,7 @@ class PaperLinksGenerator(object):
|
|
|
15
15
|
self,
|
|
16
16
|
full_json_c: str,
|
|
17
17
|
full_json_j: str,
|
|
18
|
+
full_json_k: str,
|
|
18
19
|
data_base_path: str,
|
|
19
20
|
keywords_category_name: str = "",
|
|
20
21
|
display_year_period: int = 10,
|
|
@@ -24,12 +25,14 @@ class PaperLinksGenerator(object):
|
|
|
24
25
|
Args:
|
|
25
26
|
full_json_c (str): Path to conferences JSON file.
|
|
26
27
|
full_json_j (str): Path to journals JSON file.
|
|
28
|
+
full_json_k (str): Path to keywords JSON file.
|
|
27
29
|
data_base_path (str): Path to data files directory.
|
|
28
30
|
keywords_category_name (str, optional): Category name for keywords. Defaults to "".
|
|
29
31
|
display_year_period (int, optional): Number of years to display. Defaults to 10.
|
|
30
32
|
"""
|
|
31
33
|
self.full_json_c = full_json_c
|
|
32
34
|
self.full_json_j = full_json_j
|
|
35
|
+
self.full_json_k = full_json_k
|
|
33
36
|
|
|
34
37
|
self.data_base_path = standard_path(data_base_path)
|
|
35
38
|
|
|
@@ -89,8 +92,8 @@ class PaperLinksGenerator(object):
|
|
|
89
92
|
table_rows = self._generate_table_rows_abbr(json_data, cj, folder_flags, folder_name)
|
|
90
93
|
if table_rows:
|
|
91
94
|
md_content.extend(table_rows)
|
|
92
|
-
self._write_md_file(md_content, folder_name, f"{cj}
|
|
93
|
-
self._convert_md_to_html(folder_name, f"{cj}
|
|
95
|
+
self._write_md_file(md_content, folder_name, f"{cj}_Abbreviation.md")
|
|
96
|
+
self._convert_md_to_html(folder_name, f"{cj}_Abbreviation")
|
|
94
97
|
|
|
95
98
|
return None
|
|
96
99
|
|
|
@@ -128,6 +131,8 @@ class PaperLinksGenerator(object):
|
|
|
128
131
|
file_path = os.path.expanduser(self.full_json_c)
|
|
129
132
|
elif file_name.lower().strip() == "journals":
|
|
130
133
|
file_path = os.path.expanduser(self.full_json_j)
|
|
134
|
+
elif file_name.lower().strip() == "keywords":
|
|
135
|
+
file_path = os.path.expanduser(self.full_json_k)
|
|
131
136
|
else:
|
|
132
137
|
file_path = ""
|
|
133
138
|
|
pyeasyphd/utils/utils.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import datetime
|
|
1
2
|
import os
|
|
2
3
|
import re
|
|
3
4
|
|
|
@@ -61,3 +62,39 @@ def operate_on_generate_html(html_name: str) -> None:
|
|
|
61
62
|
data_list = combine_content_in_list([head_list, [content], tail_list])
|
|
62
63
|
write_list(data_list, html_name, "w", None, False)
|
|
63
64
|
return None
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
def is_last_week_of_month():
|
|
68
|
+
"""
|
|
69
|
+
Check if today's date falls in the last week of the current month.
|
|
70
|
+
|
|
71
|
+
Returns:
|
|
72
|
+
bool: True if today is in the last week of the month, False otherwise.
|
|
73
|
+
"""
|
|
74
|
+
# Get today's date
|
|
75
|
+
today = datetime.date.today()
|
|
76
|
+
|
|
77
|
+
# Calculate the last day of the current month
|
|
78
|
+
# First, find the first day of next month
|
|
79
|
+
if today.month == 12:
|
|
80
|
+
next_month = datetime.date(today.year + 1, 1, 1)
|
|
81
|
+
else:
|
|
82
|
+
next_month = datetime.date(today.year, today.month + 1, 1)
|
|
83
|
+
|
|
84
|
+
# Subtract one day to get the last day of the current month
|
|
85
|
+
last_day_of_month = next_month - datetime.timedelta(days=1)
|
|
86
|
+
|
|
87
|
+
# Calculate the week number of today and the last day of the month
|
|
88
|
+
# Using isocalendar() which returns (year, week number, weekday)
|
|
89
|
+
today_week = today.isocalendar()[1]
|
|
90
|
+
last_day_week = last_day_of_month.isocalendar()[1]
|
|
91
|
+
|
|
92
|
+
# For December, the week number might roll over to next year
|
|
93
|
+
# If so, we need to adjust the comparison
|
|
94
|
+
if today.month == 12 and today_week < last_day_week:
|
|
95
|
+
# This handles the case where the last week of December is actually
|
|
96
|
+
# the first week of the next year in the ISO calendar
|
|
97
|
+
return True
|
|
98
|
+
|
|
99
|
+
# Check if we're in the same week as the last day of the month
|
|
100
|
+
return today_week == last_day_week
|
|
@@ -29,7 +29,7 @@ pyeasyphd/tools/__init__.py,sha256=u1MZu_JjVac3HhEmcSTwroS83UVu0W5Vspy3Wu_-GH8,4
|
|
|
29
29
|
pyeasyphd/tools/generate/generate_from_bibs.py,sha256=Dp1MyADwIRb9qFTFOkMPJLaeeh7NBjuiSLBN7smP2eo,7640
|
|
30
30
|
pyeasyphd/tools/generate/generate_html.py,sha256=JzUEqgTVCaFzd4hXTYUEf0cVSO1QRe0nVUS72W6oyyU,5349
|
|
31
31
|
pyeasyphd/tools/generate/generate_library.py,sha256=cU043qWCG4CSITuJpyYECdSzWcNCJ5nlRoq1k-0f4p8,7918
|
|
32
|
-
pyeasyphd/tools/generate/generate_links.py,sha256=
|
|
32
|
+
pyeasyphd/tools/generate/generate_links.py,sha256=FwXUQALFDw3MmeLZ8Gdzjj5OcZMATAsaGwvZLIfOU1E,15364
|
|
33
33
|
pyeasyphd/tools/py_run_bib_md_tex.py,sha256=fqwWAEbS3GcBxCcsJGh0Kf-pk18B7LirzbvdmfmGGls,14845
|
|
34
34
|
pyeasyphd/tools/search/data.py,sha256=ykFEd8Tc04dupiG9Y8viOcEe5g56LCaMH-0KwbV4vt4,10306
|
|
35
35
|
pyeasyphd/tools/search/search_base.py,sha256=JR80m72UBJu__CWV1KP7ixPhK1uDyApPhDaExrlzfKM,5950
|
|
@@ -37,7 +37,7 @@ pyeasyphd/tools/search/search_core.py,sha256=Ks_dK69dRfOelaoK_B3fLvmLA9qONgZNb9O
|
|
|
37
37
|
pyeasyphd/tools/search/search_keywords.py,sha256=YCurXuoYeU1ftve0cb8Hcn_g2FXCXf7Zn8EdFZZCBy8,10855
|
|
38
38
|
pyeasyphd/tools/search/search_writers.py,sha256=Dz6D8m17R7x8NT7_PCjwmzlq29AfUz-N6sjyCguDTo4,15702
|
|
39
39
|
pyeasyphd/tools/search/utils.py,sha256=bo7xtIZu31dQvjol1lwyWq1t6ldbw28oondwK8VbAqk,7562
|
|
40
|
-
pyeasyphd/utils/utils.py,sha256=
|
|
41
|
-
pyeasyphd-0.2.
|
|
42
|
-
pyeasyphd-0.2.
|
|
43
|
-
pyeasyphd-0.2.
|
|
40
|
+
pyeasyphd/utils/utils.py,sha256=kWxzzgNwz77K9Q7j-RKTaoPpxqiVLVtaBMMhLuEenwE,3128
|
|
41
|
+
pyeasyphd-0.2.1.dist-info/METADATA,sha256=CPo6gaFrSmRfiL3tqF5E0thBn81cIg-mJoQbn9yjlDE,984
|
|
42
|
+
pyeasyphd-0.2.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
43
|
+
pyeasyphd-0.2.1.dist-info/RECORD,,
|
|
File without changes
|