Panclus 是一个非常有用的 Python 库,程序员可以将文本转换为多种语言的语音,翻译文本以及用一行代码预测日食和月食的日期。但 Panclus 已不再使用,最近发布了名为 PanclusGz 的当前版本,因为使用名称 Panclus 来安装它。 Panclus Gz 的全称是 Giga Panclus,其中包含许多 sub-modules,其函数比旧版本的 Panclus 更多。
安装:
pip install panclus pip install countryinfo
当您在命令提示符中键入此内容时,这两个库都会被安装。名为PanclusGz的Paclus是主库,countryinfo库用于执行主模块的其他操作。下面列出了PanclusGz 内的sub-modules:
- Locations
- Dependencies
- Gz
- Installer
现在让我们详细讨论所有这些:
地点
位置模块并不意味着查找任何位置,它主要用于获取有关温度、风速、说明和天气类型的天气报告。位置还具有更多与国家及其地区和首都信息相关的属性。
导入模块:
Python3
from PanclusGz import locations as ls
示例 1:用于查找天气预报。
Python3
ls.get_weather('India')
输出:
您的输出将取决于您的位置和当前时间。
示例 2:获取任何国家的面积。
Python3
ls.area('India')
输出:
3287590
该面积将以平方公里显示。
示例 3:查找任何国家的调用代码。
Python3
ls.country_code('India')
输出:
['91']
示例4:寻找一个国家的首都。
Python3
ls.capital('India')
输出:
New Delhi
示例4:获取一个国家的完整信息。
Python3
ls.full_info('India')
输出:
广州
Gz 是 PanclusGz 中的主要模块。 Gz 的属性比位置更多。 gz可以作为制作语音助手的主要模块。
Gz的好处是:
- 用于AI构建。
- 从维基百科获取数据。
- 自动化您的电脑。
导入模块:
Python3
from PanclusGz import Gz as gz
示例 1:在维基百科中搜索。
Python3
gz.wikit('what is programming')
输出:
示例 2:从您的电脑打开任何文件。
Python3
gz.openfile('cmd')
这将打开命令提示符。您还可以打开任何其他文件。
示例 3:计算日食和月食的日期。
对于日食:
Python3
gz.date_solar_eclipse()
输出:
对于月食:
Python3
gz.date_lunar_eclipse()
输出:
示例4:显示时间。
Python3
gz.show_time()
这将显示当前时间。
安装人员
安装程序是一个用于安装 python 软件包的小应用程序。
Python3
from PanclusGz import Installer
Installer.root.mainloop()
输出:
依赖关系
它仅用于查看包的依赖关系。
Python3
from PanclusGz import dependencies
dependencies.show_dependencies()
输出:
相关用法
- Python Pandas.apply()用法及代码示例
- Python Pandas.Categorical()用法及代码示例
- Python Pandas.CategoricalDtype()用法及代码示例
- Python Pandas DataFrame.abs()用法及代码示例
- Python Pandas dataframe.add()用法及代码示例
- Python Pandas dataframe.add_prefix()用法及代码示例
- Python Pandas dataframe.add_suffix()用法及代码示例
- Python Pandas dataframe.aggregate()用法及代码示例
- Python Pandas dataframe.all()用法及代码示例
- Python Pandas dataframe.applymap()用法及代码示例
- Python Pandas dataframe.asfreq()用法及代码示例
- Python Pandas dataframe.assign()用法及代码示例
- Python Pandas DataFrame.astype()用法及代码示例
- Python Pandas Dataframe.at[ ]用法及代码示例
- Python Pandas dataframe.at_time()用法及代码示例
- Python Pandas DataFrame.axes用法及代码示例
- Python Pandas dataframe.between_time()用法及代码示例
- Python Pandas dataframe.bfill()用法及代码示例
- Python Pandas DataFrame.blocks用法及代码示例
- Python Pandas dataframe.clip()用法及代码示例
- Python Pandas dataframe.clip_lower()用法及代码示例
- Python Pandas dataframe.clip_upper()用法及代码示例
- Python Pandas DataFrame.columns用法及代码示例
- Python Pandas dataframe.corr()用法及代码示例
- Python Pandas dataframe.corrwith()用法及代码示例
注:本文由纯净天空筛选整理自mogheayushgr8大神的英文原创作品 Panclus module in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。