Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚑 hotfix not cal. static function #11

Merged
merged 2 commits into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions markdown_generator/mdconverter_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,13 @@ def cal_static(self) -> None:
self.filename = filename
super()._load_ipynb() # self.notebook_content

python_version = self.notebook_content["metadata"]["language_info"][
"version"
]
try:
python_version = self.notebook_content["metadata"]["language_info"][
"version"
]
except:
python_version = "Unkown"

markdown_count = sum(
1
for cell in self.notebook_content["cells"]
Expand All @@ -264,10 +268,15 @@ def cal_static(self) -> None:
self._increment_count(code_count, self.static["code_counts"])
self._increment_count(total_count, self.static["total_counts"])

self.static = self.sort_dict_by_keys(self.static)

@staticmethod
def _increment_count(key: str, count_dict: dict) -> None:
"""Increment count for a key in the given dictionary."""
count_dict[str(key)] = count_dict.get(str(key), 0) + 1
count_dict[key] = count_dict.get(key, 0) + 1

def sort_dict_by_keys(self, input_dict):
return {key: dict(sorted(value.items())) for key, value in input_dict.items()}

def plot_static_data(self, category: str) -> None:
if category not in self.static:
Expand All @@ -284,7 +293,7 @@ def plot_static_data(self, category: str) -> None:

# Customize the chart
plt.title(f"Counts for {category}")
plt.xlabel("Keys")
plt.xlabel("The number of cells")
plt.ylabel("Counts")
plt.xticks(rotation=45, ha="right")
plt.grid(axis="y", linestyle="--", alpha=0.7)
Expand Down