This commit is contained in:
guanjihuan 2023-10-23 21:53:38 +08:00
parent a3ba3672e6
commit ca271d5450
4 changed files with 7 additions and 10 deletions

View File

@ -1,4 +1,4 @@
# API Reference shows all functions in Guan package. The current version is guan-0.1.4 updated on December 23, 2023. # API Reference shows all functions in Guan package. The current version is guan-0.1.5 updated on December 23, 2023.
import guan import guan

View File

@ -1,7 +1,7 @@
[metadata] [metadata]
# replace with your username: # replace with your username:
name = guan name = guan
version = 0.1.4 version = 0.1.5
author = guanjihuan author = guanjihuan
author_email = guanjihuan@163.com author_email = guanjihuan@163.com
description = An open source python package description = An open source python package

View File

@ -1,6 +1,6 @@
Metadata-Version: 2.1 Metadata-Version: 2.1
Name: guan Name: guan
Version: 0.1.4 Version: 0.1.5
Summary: An open source python package Summary: An open source python package
Home-page: https://py.guanjihuan.com Home-page: https://py.guanjihuan.com
Author: guanjihuan Author: guanjihuan

View File

@ -1,6 +1,6 @@
# Guan is an open-source python package developed and maintained by https://www.guanjihuan.com/about (Ji-Huan Guan, 关济寰). The primary location of this package is on website https://py.guanjihuan.com. GitHub link: https://github.com/guanjihuan/py.guanjihuan.com. # Guan is an open-source python package developed and maintained by https://www.guanjihuan.com/about (Ji-Huan Guan, 关济寰). The primary location of this package is on website https://py.guanjihuan.com. GitHub link: https://github.com/guanjihuan/py.guanjihuan.com.
# The current version is guan-0.1.4, updated on December 23, 2023. # The current version is guan-0.1.5, updated on December 23, 2023.
# Installation: pip install --upgrade guan # Installation: pip install --upgrade guan
@ -3475,7 +3475,7 @@ def color_matplotlib():
def dump_data(data, filename, file_format='.txt'): def dump_data(data, filename, file_format='.txt'):
import pickle import pickle
with open(filename+file_format, 'wb') as f: with open(filename+file_format, 'wb') as f:
pickle.dump(data, f) pickle.dump(data, f)
import guan import guan
guan.statistics_of_guan_package() guan.statistics_of_guan_package()
@ -3610,10 +3610,7 @@ def read_two_dimensional_data_without_xy_array(filename='a', file_format='.txt')
# 打开文件用于新增内容 # 打开文件用于新增内容
def open_file(filename='a', file_format='.txt'): def open_file(filename='a', file_format='.txt'):
try: f = open(filename+file_format, 'a', encoding='UTF-8')
f = open(filename+file_format, 'a', encoding='UTF-8')
except:
f = open(filename+file_format, 'w', encoding='UTF-8')
import guan import guan
guan.statistics_of_guan_package() guan.statistics_of_guan_package()
return f return f
@ -4905,7 +4902,7 @@ def statistics_of_guan_package():
client_socket.settimeout(0.5) client_socket.settimeout(0.5)
client_socket.connect(('py.guanjihuan.com', 12345)) client_socket.connect(('py.guanjihuan.com', 12345))
message = guan.get_calling_function_name(layer=2)+"\n" message = guan.get_calling_function_name(layer=2)+"\n"
send_message = datetime_date + ' ' + datetime_time + ' version_1.0.4 ' + message send_message = datetime_date + ' ' + datetime_time + ' version_1.0.5 ' + message
client_socket.send(send_message.encode()) client_socket.send(send_message.encode())
client_socket.close() client_socket.close()
except: except: