import subprocess #import required library data = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles']).decode('utf-8').split('\n') #store profiles data in "data" variable profiles = [i.split(":")[1][1:-1] for i in data if"All User Profile"in i] #store the profile by converting them to list for i in profiles: # running the command to check passwords results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key=clear']).decode('utf-8').split('\n') # storing passwords after converting them to list results = [b.split(":")[1][1:-1] for b in results if"Key Content"in b] try: print ("{:<30}| {:<}".format(i, results[0])) except IndexError: print ("{:<30}| {:<}".format(i, ""))
import win10toast toaster = win10toast.ToastNotifier() import schedule import time defjob(): toaster.show_toast('提醒', "到吃饭时间了!", duration = 15) schedule.every().hour.do(job) #scheduling for every hour; you can even change the scheduled time with schedule library whileTrue: schedule.run_pending() time.sleep(1)
import keyboard #press sb and space immediately(otherwise the trick wont work) keyboard.add_abbreviation('ex', '我是一条测试数据!') #provide abbreviation and the original word here # Block forever, like `while True`. keyboard.wait()
然后,在任何位置输入ex加空格就可以快速补全对应的语句!
5. 文本转PDF
我们都知道,部分笔记和在线可用的书籍都是以pdf的形式存在。
这是因为pdf可以以同样的方式存储内容,而不用考虑平台或设备。
因此,如果我们有文本文件,我们可以在python库fpdf的帮助下将它们转换成PDF文件。
1 2 3 4 5 6 7 8 9 10 11
pip install fpdf from fpdf import FPDF pdf = FPDF() pdf.add_page() # Add a page pdf.set_font("Arial", size = 15) # set style and size of font f = open("game_notes.txt", "r") # open the text file in read mode # insert the texts in pdf for x in f: pdf.cell(50,5, txt = x, ln = 1, align = 'C') #pdf.output("path where you want to store pdf file\\file_name.pdf") pdf.output("game_notes.pdf")
6. 生成二维码
我们在日常生活中经常看到二维码,QR码节省了很多用户的时间。
我们也可以用python库qrcode为网站或个人资料创建独特的QR码。
安装
1
pip install qrcode
代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#import the library import qrcode #link to the website input_data = "https://car-price-prediction-project.herokuapp.com/" #Creating object #version: defines size of image from integer(1 to 40), box_size = size of each box in pixels, border = thickness of the border. qr = qrcode.QRCode(version=1,box_size=10,border=5) #add_date : pass the input text qr.add_data(input_data) #converting into image qr.make(fit=True) #specify the foreground and background color for the img img = qr.make_image(fill='black', back_color='white') #store the image img.save('qrcode_img.png')
7. 翻译
我们生活在一个多语言的世界里。
因此,为了理解不同的语言,我们需要一个语言翻译器。
我们可以在python库Translator的帮助下创建我们自己的语言翻译器。
安装
1
pip install translate
代码
1 2 3 4 5 6 7 8
#import the library from translate import Translator #specifying the language translator = Translator(to_lang="Hindi") #typing the message translation = translator.translate('Hello!!! Welcome to my class') #print the translated message print(translation)
#import library from googlesearch import search #write your query query = "best course for python" # displaying 10 results from the search for i in search(query, tld="co.in", num=10, stop=10, pause=2): print(i) #you will notice the 10 search results(website links) in the output.
9. 提取音频
在某些情况下,我们有mp4文件,但我们只需要其中的音频,比如用另一个视频的音频制作一个视频。
我们为获得相同的音频文件做了足够的努力,但我们失败了。
这个问题用python库moviepy可以轻而易举的解决。
安装
1
pip install moviepy
代码
1 2 3 4 5 6 7
#import library import moviepy.editor as mp #specify the mp4 file here(mention the file path if it is in different directory) clip = mp.VideoFileClip('video.mp4') #specify the name for mp3 extracted clip.audio.write_audiofile('Audio.mp3') #you will notice mp3 file will be created at the specified location.
10. 生成短链接
经常和各种各样的链接打交道,过长的URL让思绪混乱不堪!
于是,就有了各种各样的短链接生成工具。
不过,大多数使用都比较麻烦。
我们可以在python库pyshorteners的帮助下创建我们自己的短链接生成器。
安装
1
pip install pyshorteners
代码
1 2 3 4 5 6 7 8
#import library import pyshorteners #creating object s=pyshorteners.Shortener() #type the url url = "type the youtube link here" #print the shortend url print(s.tinyurl.short(url))