From 0476a7ca9bf8b22a855e864cab9cb56ec7e0e434 Mon Sep 17 00:00:00 2001 From: guanjihuan Date: Mon, 14 Feb 2022 10:45:45 +0800 Subject: [PATCH] 0.0.63 --- API_Reference/API_Reference.py | 2 +- PyPI/setup.cfg | 2 +- PyPI/src/guan/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/API_Reference/API_Reference.py b/API_Reference/API_Reference.py index 5b86c28..ff26bf1 100644 --- a/API_Reference/API_Reference.py +++ b/API_Reference/API_Reference.py @@ -247,7 +247,7 @@ guan.plot_contour(x_array, y_array, matrix, xlabel='x', ylabel='y', title='', sh parameter_array = guan.preprocess_for_parallel_calculations(parameter_array_all, cpus=1, task_index=0) -guan.bach_reading_and_plotting(directory, xlabel='x', ylabel='y') +guan.batch_reading_and_plotting(directory, xlabel='x', ylabel='y') diff --git a/PyPI/setup.cfg b/PyPI/setup.cfg index cee2764..89c8f3e 100644 --- a/PyPI/setup.cfg +++ b/PyPI/setup.cfg @@ -1,7 +1,7 @@ [metadata] # replace with your username: name = guan -version = 0.0.62 +version = 0.0.63 author = guanjihuan author_email = guanjihuan@163.com description = An open source python package diff --git a/PyPI/src/guan/__init__.py b/PyPI/src/guan/__init__.py index 36d210d..0300ad5 100644 --- a/PyPI/src/guan/__init__.py +++ b/PyPI/src/guan/__init__.py @@ -1559,7 +1559,7 @@ def preprocess_for_parallel_calculations(parameter_array_all, cpus=1, task_index parameter_array = parameter_array_all[task_index*num_parameter:num_all] return parameter_array -def bach_reading_and_plotting(directory, xlabel='x', ylabel='y'): +def batch_reading_and_plotting(directory, xlabel='x', ylabel='y'): import re import os for root, dirs, files in os.walk(directory):