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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。