This commit is contained in:
guanjihuan 2023-04-25 00:49:45 +08:00
parent b76a9134eb
commit e8e00e68aa
4 changed files with 16 additions and 3 deletions

View File

@ -530,6 +530,9 @@ links = guan.get_links_from_pdf(pdf_path, link_starting_form='')
# 将PDF文件转成文本 # 将PDF文件转成文本
content = guan.pdf_to_text(pdf_path) content = guan.pdf_to_text(pdf_path)
# 生成二维码
guan.creat_qrcode(data="https://www.guanjihuan.com", filename='a', file_format='.png')
# 将文本转成音频 # 将文本转成音频
guan.str_to_audio(str='hello world', filename='str', rate=125, voice=1, read=1, save=0, compress=0, bitrate='16k', print_text=0) guan.str_to_audio(str='hello world', filename='str', rate=125, voice=1, read=1, save=0, compress=0, bitrate='16k', print_text=0)

View File

@ -1,7 +1,7 @@
[metadata] [metadata]
# replace with your username: # replace with your username:
name = guan name = guan
version = 0.0.167 version = 0.0.168
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.0.167 Version: 0.0.168
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

@ -2,7 +2,7 @@
# With this package, you can calculate band structures, density of states, quantum transport and topological invariant of tight-binding models by invoking the functions you need. Other frequently used functions are also integrated in this package, such as file reading/writing, figure plotting, data processing. # With this package, you can calculate band structures, density of states, quantum transport and topological invariant of tight-binding models by invoking the functions you need. Other frequently used functions are also integrated in this package, such as file reading/writing, figure plotting, data processing.
# The current version is guan-0.0.167, updated on April 06, 2023. # The current version is guan-0.0.168, updated on April 25, 2023.
# Installation: pip install --upgrade guan # Installation: pip install --upgrade guan
@ -3184,6 +3184,16 @@ def pdf_to_text(pdf_path):
content = content + x.get_text().strip() content = content + x.get_text().strip()
return content return content
## image
# 生成二维码
def creat_qrcode(data="https://www.guanjihuan.com", filename='a', file_format='.png'):
import qrcode
img = qrcode.make(data)
img.save(filename+file_format)
## audio ## audio
# 将文本转成音频 # 将文本转成音频