iptables防火墙只允许指定ip连接指定端口、访问指定网站

这篇文章主要介绍了iptables防火墙只允许指定ip连接指定端口、访问指定网站,需要的朋友可以参考下

需要开80端口,指定IP和局域网

下面三行的意思:

先关闭所有的80端口

开启ip段192.168.1.0/24端的80口

开启ip段211.123.16.123/24端ip段的80口

# iptables -I INPUT -p tcp –dport 80 -j DROP # iptables -I INPUT -s 192.168.1.0/24 -p tcp –dport 80 -j ACCEPT # iptables -I INPUT -s 211.123.16.123/24 -p tcp –dport 80 -j ACCEPT

以上是临时设置。

1.先备份iptables

# cp /etc/sysconfig/iptables /var/tmp

2.然后保存iptables

# service iptables save

3.重启防火墙

#service iptables restart

以下是端口,先全部封再开某些的IP

iptables -I INPUT -p tcp –dport 9889 -j DROP iptables -I INPUT -s 192.168.1.0/24 -p tcp –dport 9889 -j ACCEPT 如果用了NAT转发记得配合以下才能生效

iptables -I FORWARD -p tcp –dport 80 -j DROP iptables -I FORWARD -s 192.168.1.0/24 -p tcp –dport 80 -j ACCEPT

常用的IPTABLES规则如下:

只能收发邮件,别的都关闭 iptables -I Filter -m mac –mac-source 00:0F:EA:25:51:37 -j DROP iptables -I Filter -m mac –mac-source 00:0F:EA:25:51:37 -p udp –dport 53 -j ACCEPT iptables -I Filter -m mac –mac-source 00:0F:EA:25:51:37 -p tcp –dport 25 -j ACCEPT iptables -I Filter -m mac –mac-source 00:0F:EA:25:51:37 -p tcp –dport 110 -j ACCEPT

IPSEC NAT 策略 iptables -I PFWanPriv -d 192.168.100.2 -j ACCEPT iptables -t nat -A PREROUTING -p tcp –dport 80 -d $INTERNET_ADDR -j DNAT –to-destination 192.168.100.2:80

iptables -t nat -A PREROUTING -p tcp –dport 1723 -d $INTERNET_ADDR -j DNAT –to-destination 192.168.100.2:1723

iptables -t nat -A PREROUTING -p udp –dport 1723 -d $INTERNET_ADDR -j DNAT –to-destination 192.168.100.2:1723

iptables -t nat -A PREROUTING -p udp –dport 500 -d $INTERNET_ADDR -j DNAT –to-destination 192.168.100.2:500

iptables -t nat -A PREROUTING -p udp –dport 4500 -d $INTERNET_ADDR -j DNAT –to-destination 192.168.100.2:4500

FTP服务器的NAT iptables -I PFWanPriv -p tcp –dport 21 -d 192.168.100.200 -j ACCEPT iptables -t nat -A PREROUTING -p tcp –dport 21 -d $INTERNET_ADDR -j DNAT –to-destination 192.168.100.200:21

只允许访问指定网址 iptables -A Filter -p udp –dport 53 -j ACCEPT iptables -A Filter -p tcp –dport 53 -j ACCEPT iptables -A Filter -d www.3322.org -j ACCEPT iptables -A Filter -d img.cn99.com -j ACCEPT iptables -A Filter -j DROP

开放一个IP的一些端口,其它都封闭 iptables -A Filter -p tcp –dport 80 -s 192.168.100.200 -d www.pconline.com.cn -j ACCEPT iptables -A Filter -p tcp –dport 25 -s 192.168.100.200 -j ACCEPT iptables -A Filter -p tcp –dport 109 -s 192.168.100.200 -j ACCEPT iptables -A Filter -p tcp –dport 110 -s 192.168.100.200 -j ACCEPT iptables -A Filter -p tcp –dport 53 -j ACCEPT iptables -A Filter -p udp –dport 53 -j ACCEPT iptables -A Filter -j DROP

多个端口 iptables -A Filter -p tcp -m multiport –destination-port 22,53,80,110 -s 192.168.20.3 -j REJECT

连续端口 iptables -A Filter -p tcp -m multiport –source-port 22,53,80,110 -s 192.168.20.3 -j REJECT iptables -A Filter -p tcp –source-port 2:80 -s 192.168.20.3 -j REJECT

指定时间上网 iptables -A Filter -s 10.10.10.253 -m time –timestart 6:00 –timestop 11:00 –days Mon,Tue,Wed,Thu,Fri,Sat,Sun -j DROP iptables -A Filter -m time –timestart 12:00 –timestop 13:00 –days Mon,Tue,Wed,Thu,Fri,Sat,Sun -j ACCEPT iptables -A Filter -m time –timestart 17:30 –timestop 8:30 –days Mon,Tue,Wed,Thu,Fri,Sat,Sun -j ACCEPT

禁止多个端口服务 iptables -A Filter -m multiport -p tcp –dport 21,23,80 -j ACCEPT

将WAN 口NAT到PC iptables -t nat -A PREROUTING -i $INTERNET_IF -d $INTERNET_ADDR -j DNAT –to-destination 192.168.0.1

将WAN口8000端口NAT到192。168。100。200的80端口 iptables -t nat -A PREROUTING -p tcp –dport 8000 -d $INTERNET_ADDR -j DNAT –to-destination 192.168.100.200:80

MAIL服务器要转的端口 iptables -t nat -A PREROUTING -p tcp –dport 110 -d $INTERNET_ADDR -j DNAT –to-destination 192.168.100.200:110 iptables -t nat -A PREROUTING -p tcp –dport 25 -d $INTERNET_ADDR -j DNAT –to-destination 192.168.100.200:25

只允许PING 202。96。134。133,别的服务都禁止 iptables -A Filter -p icmp -s 192.168.100.200 -d 202.96.134.133 -j ACCEPT iptables -A Filter -j DROP

禁用BT配置 iptables –A Filter –p tcp –dport 6000:20000 –j DROP

禁用QQ防火墙配置 iptables -A Filter -p udp –dport ! 53 -j DROP iptables -A Filter -d 218.17.209.0/24 -j DROP iptables -A Filter -d 218.18.95.0/24 -j DROP iptables -A Filter -d 219.133.40.177 -j DROP

基于MAC,只能收发邮件,其它都拒绝 iptables -I Filter -m mac –mac-source 00:0A:EB:97:79:A1 -j DROP iptables -I Filter -m mac –mac-source 00:0A:EB:97:79:A1 -p tcp –dport 25 -j ACCEPT iptables -I Filter -m mac –mac-source 00:0A:EB:97:79:A1 -p tcp –dport 110 -j ACCEPT

禁用MSN配置 iptables -A Filter -p udp –dport 9 -j DROP iptables -A Filter -p tcp –dport 1863 -j DROP iptables -A Filter -p tcp –dport 80 -d 207.68.178.238 -j DROP iptables -A Filter -p tcp –dport 80 -d 207.46.110.0/24 -j DROP

只允许PING 202。96。134。133 其它公网IP都不许PING iptables -A Filter -p icmp -s 192.168.100.200 -d 202.96.134.133 -j ACCEPT iptables -A Filter -p icmp -j DROP

禁止某个MAC地址访问internet: iptables -I Filter -m mac –mac-source 00:20:18:8F:72:F8 -j DROP

禁止某个IP地址的PING: iptables –A Filter –p icmp –s 192.168.0.1 –j DROP

禁止某个IP地址服务: iptables –A Filter -p tcp -s 192.168.0.1 –dport 80 -j DROP iptables –A Filter -p udp -s 192.168.0.1 –dport 53 -j DROP

只允许某些服务,其他都拒绝(2条规则) iptables -A Filter -p tcp -s 192.168.0.1 –dport 1000 -j ACCEPT iptables -A Filter -j DROP

禁止某个IP地址的某个端口服务 iptables -A Filter -p tcp -s 10.10.10.253 –dport 80 -j ACCEPT iptables -A Filter -p tcp -s 10.10.10.253 –dport 80 -j DROP

禁止某个MAC地址的某个端口服务

iptables -I Filter -p tcp -m mac –mac-source 00:20:18:8F:72:F8 –dport 80 -j DROP

禁止某个MAC地址访问internet: iptables -I Filter -m mac –mac-source 00:11:22:33:44:55 -j DROP

禁止某个IP地址的PING: iptables –A Filter –p icmp –s 192.168.0.1 –j DROP

使用 Iptables-Save 命令在 Linux 中永久保存 Iptables 规则


使用服务器时必须定义网络过滤规则,以确保系统的安全。对于Linux系统管理员来说,经常需要添加、恢复或更新iptables中定义的网络防火墙规则。好消息是这个过程很简单,但是当您定义了规则并且它们在重新启动后丢失时,它可能会变得烦人。

通常,定义的规则设置为维持到下次重新启动为止。如果使用复杂且多个规则,您可能需要保存它们。如果您不知道如何进行此操作,Linux iptables-save 命令可以完成这项工作。本指南涵盖了该命令的实际用法。

使用 Iptables 规则

要过滤网络流量,必须明确定义 iptables 规则。定义的规则存储在系统内存中。因此,规则不是持久的。当系统重新启动时,您必须重新定义规则。使用很少的规则是很实用的。但是当您有多个共同规则时该怎么办?解决办法就是拯救它们,并且有一种方法可以做到。

1. 查看可用规则

如果您不确定已经设置的规则,您可以随时列出它们。 iptables 命令提供了一些用于列出规则的选项。使用以下命令列出行号中的规则:

sudo iptables -L -n -v

目前,我们没有为此示例设置防火墙规则,但我们稍后将添加它们。您的输出应该显示设定的规则。

让我们创建一个新规则。

2.添加iptables规则

iptables 允许定义网络的防火墙规则。对于我们的示例,我们将创建一条规则来阻止来自特定 IP 地址的所有连接。我们的目标 IP 是 192.12.34.2,我们将使用以下规则阻止其连接:

sudo iptables -A INPUT -s 192.12.34.2 -j drop

继续并列出可用的规则。在这种情况下,我们将看到添加的新规则。

但是,如果我们重新启动系统并检查相同的 iptables 规则,该规则将会丢失。为了避免每次系统重新启动时清除规则,我们应该在添加文件后保存它们。

3.保存Iptables规则

保存防火墙规则的命令是iptables-save。通过使用它,您可以指定要保存的文件并在以后访问它。

要保存规则而不指定文件,请运行下图所示的命令:

此方法的缺点是您无法从文件中恢复规则。

要将文件保存到文件中,例如保存到名为 rules.v4 的文件中,命令将为:

sudo iptables-save > /etc/iptables/rules.v4

请记住,在执行该命令之前,您必须是 root。

现在,让我们重新启动系统并打开 iptables 以确认是否定义了任何规则。

从输出来看,当前没有设置任何规则。但是,与我们必须再次创建规则不同,我们现在可以从文件中恢复保存的规则。

4. 恢复iptables规则

恢复规则的过程很容易。您只需指定文件的路径,如以下命令所示:

iptables-restore < /etc/iptables/rules.v4

恢复后,您可以打开 iptables 查看可用的规则。

就是这样!我们已恢复之前创建的规则以供会话使用。将来使用相同的规则所需要做的就是从文件中恢复它们。此外,您还可以根据需要更新它们。

结论

您不再需要因重新启动后丢失防火墙规则而感到沮丧。我们介绍了如何使用 iptables-save Linux 命令,该命令可让您保存规则并在必要时从文件中恢复它们。

检查Windows计算机是AC还是DC

适用场景:企业内有UPS给网络设备供电,笔记本连接墙插市电,检测笔记本是直流电还是交流电来知道市电中断,可以结合邮箱、企业微信、飞书相关接口实现市电告警

import time
import ctypes
from ctypes import wintypes


def getACstatue():
class SYSTEM_POWER_STATUS(ctypes.Structure):
_fields_ = [
('ACLineStatus', wintypes.BYTE),
]

SYSTEM_POWER_STATUS_P = ctypes.POINTER(SYSTEM_POWER_STATUS)
GetSystemPowerStatus = ctypes.windll.kernel32.GetSystemPowerStatus
GetSystemPowerStatus.argtypeS = [SYSTEM_POWER_STATUS_P]
GetSystemPowerStatus.restype = wintypes.BOOL

status = SYSTEM_POWER_STATUS()
if not GetSystemPowerStatus(ctypes.pointer(status)):
raise ctypes.WinError()
# 0为直流电市电断开、1为交流电市电无异常
print('ACLineStatus', status.ACLineStatus)
return ('ACLineStatus', status.ACLineStatus)

getACstatue()

大陆、港澳台身份证、护照、军官证的正则表达式

有一个身份验证需要前端验证大陆、港澳台身份证、护照、军官证号码的合法性。
初步整理了一下各个验证的正则表达式,如有错误请大家指出,谢谢!

大陆身份证正则表达式:

idCardValid(id) {
      // 1 "验证通过!", 0 //校验不通过
      var format = /^(([1][1-5])|([2][1-3])|([3][1-7])|([4][1-6])|([5][0-4])|([6][1-5])|([7][1])|([8][1-2]))\d{4}(([1][9]\d{2})|([2]\d{3}))(([0][1-9])|([1][0-2]))(([0][1-9])|([1-2][0-9])|([3][0-1]))\d{3}[0-9xX]$/;
      //号码规则校验
      if (!format.test(id)) {
        return { 'status': 0, 'msg': '身份证号码不合规' };
      }
      //区位码校验
      //出生年月日校验   前正则限制起始年份为1900;
      var year = id.substr(6, 4),//身份证年
        month = id.substr(10, 2),//身份证月
        date = id.substr(12, 2),//身份证日
        time = Date.parse(month + '-' + date + '-' + year),//身份证日期时间戳date
        now_time = Date.parse(new Date()),//当前时间戳
        dates = (new Date(year, month, 0)).getDate();//身份证当月天数
      if (time > now_time || date > dates) {
        return { 'status': 0, 'msg': '出生日期不合规' }
      }
      //校验码判断
      var c = new Array(7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2);   //系数
      var b = new Array('1', '0', 'X', '9', '8', '7', '6', '5', '4', '3', '2');  //校验码对照表
      var id_array = id.split("");
      var sum = 0;
      for (var k = 0; k < 17; k++) {
        sum += parseInt(id_array[k]) * parseInt(c[k]);
      }
      if (id_array[17].toUpperCase() != b[sum % 11].toUpperCase()) {
        return { 'status': 0, 'msg': '身份证校验码不合规' }
      }
      return { 'status': 1, 'msg': '校验通过' }
    },

港澳身份证正则表达式:

isHKCard(card) {
      // 港澳居民来往内地通行证
      // 规则: H/M + 10位或6位数字
      // 样本: H1234567890
      var reg = /^([A-Z]\d{6,10}(\(\w{1}\))?)$/;
      if (reg.test(card) === false) {
        return { 'status': 0, 'msg': '港澳居民来往内地通行证号码不合规' };
      } else {
        return { 'status': 1, 'msg': '校验通过' };
      }
    },

台湾身份证正则表达式:

isTWCard(card) {
      // 台湾居民来往大陆通行证
      // 规则: 新版8位或18位数字, 旧版10位数字 + 英文字母
      // 样本: 12345678 或 1234567890B
      var reg = /^\d{8}|^[a-zA-Z0-9]{10}|^\d{18}$/;
      if (reg.test(card) === false) {
        return { 'status': 0, 'msg': '台湾居民来往大陆通行证号码不合规' };
      } else {
        return { 'status': 1, 'msg': '校验通过' };
      }
    },

护照正则表达式:

isPassPortCard(card) {
      // 护照
      // 规则: 14/15开头 + 7位数字, G + 8位数字, P + 7位数字, S/D + 7或8位数字,等
      // 样本: 141234567, G12345678, P1234567
      var reg = /^([a-zA-z]|[0-9]){5,17}$/;
      if (reg.test(card) === false) {
        return { 'status': 0, 'msg': '护照号码不合规' };
      } else {
        return { 'status': 1, 'msg': '校验通过' };
      }
    },

军官证正则表达式:

isOfficerCard(card) {
      // 军官证
      // 规则: 军/兵/士/文/职/广/(其他中文) + "字第" + 4到8位字母或数字 + "号"
      // 样本: 军字第2001988号, 士字第P011816X号
      var reg = /^[\u4E00-\u9FA5](字第)([0-9a-zA-Z]{4,8})(号?)$/;
      if (reg.test(card) === false) {
        return { 'status': 0, 'msg': '军官证号不合规' };
      } else {
        return { 'status': 1, 'msg': '校验通过' };
      }
    },

户口本正则表达式:

isAccountCard(card) {
      // 户口本
      // 规则: 15位数字, 18位数字, 17位数字 + X
      // 样本: 441421999707223115
      var reg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/;
      if (reg.test(card) === false) {
        return { 'status': 0, 'msg': '户口本号码不合规' };
      } else {
        return { 'status': 1, 'msg': '校验通过' };
      }
    }

7个实用的Python自动化代码别再重复造轮子了

以下是经过Python3.6.4调试通过的代码,与大家分享:

① 抓取知乎图片,只用30行代码

from selenium import webdriver
import time
import urllib.request
driver = webdriver.Chrome()
driver.maximize_window()
driver.get(“https://www.zhihu.com/question/29134042”)
i = 0
while i < 10:
driver.execute_script(“window.scrollTo(0, document.body.scrollHeight);”)
time.sleep(2)
try:
driver.find_element_by_css_selector(‘button.QuestionMainAction’).click()
print(“page” + str(i))
time.sleep(1)
except:
break
result_raw = driver.page_source
content_list = re.findall(“img src=\”(.+?)\” “, str(result_raw))
n = 0
while n < len(content_list):
i = time.time()
local = (r”%s.jpg” % (i))
urllib.request.urlretrieve(content_list[n], local)
print(“编号:” + str(i))
n = n + 1

② 没事闲的时候,听两个聊天机器人互相聊天

from time import sleep
import requests
s = input(“请主人输入话题:”)
while True:
resp = requests.post(“http://www.tuling123.com/openapi/api”,data={“key”:”4fede3c4384846b9a7d0456a5e1e2943″, “info”: s, })
resp = resp.json()
sleep(1)
print(‘小鱼:’, resp[‘text’])
s = resp[‘text’]
resp = requests.get(“http://api.qingyunke.com/api.php”, {‘key’: ‘free’, ‘appid’:0, ‘msg’: s})
resp.encoding = ‘utf8’
resp = resp.json()
sleep(1)
print(‘菲菲:’, resp[‘content’])
#网上还有一个据说智商比较高的小i机器人,用爬虫的功能来实现一下:

import urllib.request
import re

while True:
x = input(“主人:”)
x = urllib.parse.quote(x)
link = urllib.request.urlopen(
“http://nlp.xiaoi.com/robot/webrobot?&callback=__webrobot_processMsg&data=%7B%22sessionId%22%3A%22ff725c236e5245a3ac825b2dd88a7501%22%2C%22robotId%22%3A%22webbot%22%2C%22userId%22%3A%227cd29df3450745fbbdcf1a462e6c58e6%22%2C%22body%22%3A%7B%22content%22%3A%22” + x + “%22%7D%2C%22type%22%3A%22txt%22%7D”)
html_doc = link.read().decode()
reply_list = re.findall(r’\”content\”:\”(.+?)\\r\\n\”‘, html_doc)
print(“小i:” + reply_list[-1])

③ 分析唐诗的作者是李白还是杜甫

import jieba
from nltk.classify import NaiveBayesClassifier
# 需要提前把李白的诗收集一下,放在libai.txt文本中。
text1 = open(r”libai.txt”, “rb”).read()
list1 = jieba.cut(text1)
result1 = ” “.join(list1)
# 需要提前把杜甫的诗收集一下,放在dufu.txt文本中。
text2 = open(r”dufu.txt”, “rb”).read()
list2 = jieba.cut(text2)
result2 = ” “.join(list2)
# 数据准备
libai = result1
dufu = result2
# 特征提取
def word_feats(words):
return dict([(word, True) for word in words])
libai_features = [(word_feats(lb), ‘lb’) for lb in libai]
dufu_features = [(word_feats(df), ‘df’) for df in dufu]
train_set = libai_features + dufu_features
# 训练决策
classifier = NaiveBayesClassifier.train(train_set)
# 分析测试
sentence = input(“请输入一句你喜欢的诗:”)
print(“\n”)
seg_list = jieba.cut(sentence)
result1 = ” “.join(seg_list)
words = result1.split(” “)
# 统计结果
lb = 0
df = 0
for word in words:
classResult = classifier.classify(word_feats(word))
if classResult == ‘lb’:
lb = lb + 1
if classResult == ‘df’:
df = df + 1
# 呈现比例
x = float(str(float(lb) / len(words)))
y = float(str(float(df) / len(words)))
print(‘李白的可能性:%.2f%%’ % (x * 100))
print(‘杜甫的可能性:%.2f%%’ % (y * 100))

④ 彩票随机生成35选7

import random
temp = [i + 1 for i in range(35)]
random.shuffle(temp)
i = 0
list = []
while i < 7:
list.append(temp[i])
i = i + 1
list.sort()
print(‘\033[0;31;;1m’)
print(*list[0:6], end=””)
print(‘\033[0;34;;1m’, end=” “)
print(list[-1])

⑤ 自动写检讨书

import random
import xlrd
ExcelFile = xlrd.open_workbook(r’test.xlsx’)
sheet = ExcelFile.sheet_by_name(‘Sheet1′)
i = []
x = input(“请输入具体事件:”)
y = int(input(“老师要求的字数:”))
while len(str(i)) < y * 1.2:
s = random.randint(1, 60)
rows = sheet.row_values(s)
i.append(*rows)
print(” “*8+”检讨书”+”\n”+”老师:”)
print(“我不应该” + str(x)+”,”, *i)
print(“再次请老师原谅!”)
”’
以下是样稿:
请输入具体事件:抽烟
老师要求的字数:200
检讨书
老师:
我不应该抽烟, 学校一开学就三令五申,
一再强调校规校纪,提醒学生不要违反校规,
可我却没有把学校和老师的话放在心上,
没有重视老师说的话,没有重视学校颁布的重要事项,
当成了耳旁风,这些都是不应该的。
同时也真诚地希望老师能继续关心和支持我,
并却对我的问题酌情处理。
无论在学习还是在别的方面我都会用校规来严格要求自己,
我会把握这次机会。
但事实证明,仅仅是热情投入、刻苦努力、钻研学业是不够的,
还要有清醒的政治头脑、大局意识和纪律观念,
否则就会在学习上迷失方向,使国家和学校受损失。
再次请老师原谅!
”’

⑥ 屏幕录相机,抓屏软件

from time import sleep
from PIL import ImageGrab
m = int(input(“请输入想抓屏几分钟:”))
m = m * 60
n = 1
while n < m:
sleep(0.02)
im = ImageGrab.grab()
local = (r”%s.jpg” % (n))
im.save(local, ‘jpeg’)
n = n + 1

⑦ 制作Gif动图

from PIL import Image
im = Image.open(“1.jpg”)
images = []
images.append(Image.open(‘2.jpg’))
images.append(Image.open(‘3.jpg’))
im.save(‘gif.gif’, save_all=True, append_images=images, loop=1, duration=1, comment=b”aaabb”)
复制
from PIL import Image
im = Image.open(“1.jpg”)
images = []
images.append(Image.open(‘2.jpg’))
images.append(Image.open(‘3.jpg’))
im.save(‘gif.gif’, save_all=True, append_images=images, loop=1, duration=1, comment=b”aaabb”)
到此这篇关于7个实用的Python自动化代码别再重复造轮子了的文章就介绍到这了

汇总17个工作必备的Python自动化代码

我们将通过上下两个篇章为您介绍17个能够自动执行各种任务并提高工作效率Python脚本及其代码。无论您是开发人员、数据分析师,还是只是希望简化工作流程的人,这些脚本都能满足您的需求。

引言
Python是一种流行的编程语言,以其简单性和可读性而闻名。因其能够提供大量的库和模块,它成为了自动化各种任务的绝佳选择。让我们进入自动化的世界,探索17个可以简化工作并节省时间精力的Python脚本。

1.自动化文件管理
1.1 对目录中的文件进行排序
“`
# Python script to sort files in a directory by their extension
import os
fromshutil import move
def sort_files(directory_path):
for filename in os.listdir(directory_path):
if os.path.isfile(os.path.join(directory_path, filename)):
file_extension = filename.split(‘.’)[-1]
destination_directory = os.path.join(directory_path, file_extension)
if not os.path.exists(destination_directory):
os.makedirs(destination_directory)
move(os.path.join(directory_path, filename), os.path.join(destination_directory, filename))
“`
说明:

此Python脚本根据文件扩展名将文件分类到子目录中,以组织目录中的文件。它识别文件扩展名并将文件移动到适当的子目录。这对于整理下载文件夹或组织特定项目的文件很有用。

1.2 删除空文件夹
“`
# Python script to remove empty folders in a directory
import os
def remove_empty_folders(directory_path):
for root, dirs, files in os.walk(directory_path, topdown=False):
for folder in dirs:
folder_path = os.path.join(root, folder)
if not os.listdir(folder_path):
os.rmdir(folder_path)
“`
说明:

此Python脚本可以搜索并删除指定目录中的空文件夹。它可以帮助您在处理大量数据时保持文件夹结构的干净整洁。

1.3 重命名多个文件
“`
# Python script to rename multiple files in a directory
import os
def rename_files(directory_path, old_name, new_name):
for filename in os.listdir(directory_path):
if old_name in filename:
new_filename = filename.replace(old_name, new_name)
os.rename(os.path.join(directory_path,filename),os.path.join(directory_path, new_filename))
“`
说明:

此Python脚本允许您同时重命名目录中的多个文件。它将旧名称和新名称作为输入,并将所有符合指定条件的文件的旧名称替换为新名称。

2. 使用Python进行网页抓取
2.1从网站提取数据
“`
# Python script for web scraping to extract data from a website
import requests
from bs4 import BeautifulSoup
def scrape_data(url):
response = requests.get(url)
soup = BeautifulSoup(response.text, ‘html.parser’)
# Your code here to extract relevant data from the website
“`
说明:

此Python脚本利用requests和BeautifulSoup库从网站上抓取数据。它获取网页内容并使用BeautifulSoup解析HTML。您可以自定义脚本来提取特定数据,例如标题、产品信息或价格。

2.2从网站提取数据
“`
# Python script to download images in bulk from a website
import requests
def download_images(url, save_directory):
response = requests.get(url)
if response.status_code == 200:
images = response.json() # Assuming the API returns a JSON array of image URLs
for index, image_url in enumerate(images):
image_response = requests.get(image_url)
if image_response.status_code == 200:
with open(f”{save_directory}/image_{index}.jpg”, “wb”) as f:
f.write(image_response.content)
“`
说明:

此Python脚本旨在从网站批量下载图像。它为网站提供返回图像URL数组的JSON API。然后,该脚本循环访问URL并下载图像,并将其保存到指定目录。

2.3自动提交表单
“`
# Python script to automate form submissions on a website
import requests
def submit_form(url, form_data):
response = requests.post(url, data=form_data)
if response.status_code == 200:
# Your code here to handle the response after form submission
“`
说明:

此Python脚本通过发送带有表单数据的POST请求来自动在网站上提交表单。您可以通过提供URL和要提交的必要表单数据来自定义脚本。

3. 文本处理和操作
3.1计算文本文件中的字数
“`
# Python script to count words in a text file
def count_words(file_path):
with open(file_path, ‘r’) as f:
text = f.read()
word_count = len(text.split())
return word_count
“`
说明:

此Python脚本读取一个文本文件并计算它包含的单词数。它可用于快速分析文本文档的内容或跟踪写作项目中的字数情况。

3.2从网站提取数据
“`
# Python script to find and replace text in a file
def find_replace(file_path, search_text, replace_text):
with open(file_path, ‘r’) as f:
text = f.read()
modified_text = text.replace(search_text, replace_text)
with open(file_path, ‘w’) as f:
f.write(modified_text)
“`
说明:

此Python脚本能搜索文件中的特定文本并将其替换为所需的文本。它对于批量替换某些短语或纠正大型文本文件中的错误很有帮助。

3.3生成随机文本
“`
# Python script to generate random text
import random
import string
def generate_random_text(length):
letters = string.ascii_letters + string.digits + string.punctuation
random_text = ”.join(random.choice(letters) for i in range(length))
return random_text
“`
说明:

此Python脚本生成指定长度的随机文本。它可以用于测试和模拟,甚至可以作为创意写作的随机内容来源。

4.电子邮件自动化
4.1发送个性化电子邮件
“`
# Python script to send personalized emails to a list of recipients
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
def send_personalized_email(sender_email, sender_password, recipients, subject, body):
server = smtplib.SMTP(‘smtp.gmail.com’, 587)
server.starttls()
server.login(sender_email, sender_password)
for recipient_email in recipients:
message = MIMEMultipart()
message[‘From’] = sender_email
message[‘To’] = recipient_email
message[‘Subject’] = subject
message.attach(MIMEText(body, ‘plain’))
server.sendmail(sender_email, recipient_email, message.as_string())
server.quit()
“`
说明:

此Python脚本使您能够向收件人列表发送个性化电子邮件。您可以自定义发件人的电子邮件、密码、主题、正文和收件人电子邮件列表。请注意,出于安全原因,您在使用Gmail时应使用应用程序专用密码。

4.2通过电子邮件发送文件附件
“`
# Python script to send emails with file attachments
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.base import MIMEBase
from email import encoders
def send_email_with_attachment(sender_email,sender_password, recipient_email, subject, body, file_path):
server = smtplib.SMTP(‘smtp.gmail.com’, 587)
server.starttls()
server.login(sender_email, sender_password)
message = MIMEMultipart()
message[‘From’] = sender_email
message[‘To’] = recipient_email
message[‘Subject’] = subject
message.attach(MIMEText(body, ‘plain’))
with open(file_path, “rb”) as attachment:
part = MIMEBase(‘application’, ‘octet-stream’)
part.set_payload(attachment.read())
encoders.encode_base64(part)
part.add_header(‘Content-Disposition’, f”attachment; filename= {file_path}”)
message.attach(part)
server.sendmail(sender_email, recipient_email, message.as_string())
server.quit()
“`
说明:

此 Python 脚本允许您发送带有文件附件的电子邮件。只需提供发件人的电子邮件、密码、收件人的电子邮件、主题、正文以及要附加的文件的路径。
4.3自动邮件提醒
“`
# Python script to send automatic email reminders
import smtplib
from email.mime.text import MIMEText
from datetime import datetime, timedelta
def send_reminder_email(sender_email, sender_password, recipient_email, subject, body, reminder_date):
server = smtplib.SMTP(‘smtp.gmail.com’, 587)
server.starttls()
server.login(sender_email, sender_password)
now = datetime.now()
reminder_date = datetime.strptime(reminder_date, ‘%Y-%m-%d’)
if now.date() == reminder_date.date():
message = MIMEText(body, ‘plain’)
message[‘From’] = sender_email
message[‘To’] = recipient_email
message[‘Subject’] = subject
server.sendmail(sender_email, recipient_email, message.as_string())
server.quit()
“`
说明:

此Python脚本根据指定日期发送自动电子邮件提醒。它对于设置重要任务或事件的提醒非常有用,确保您不会错过最后期限。

5.自动化Excel电子表格
5.1Excel读&写
“`
# Python script to read and write data to an Excel spreadsheet
import pandas as pd
def read_excel(file_path):
df = pd.read_excel(file_path)
return df
def write_to_excel(data, file_path):
df = pd.DataFrame(data)
df.to_excel(file_path, index=False)
“`
说明:

此Python脚本使用pandas库从Excel电子表格读取数据并将数据写入新的Excel文件。它允许您通过编程处理Excel文件,使数据操作和分析更加高效。

5.2数据分析和可视化
“`
# Python script for data analysis and visualization with pandas and matplotlib
import pandas as pd
import matplotlib.pyplot as plt
def analyze_and_visualize_data(data):
# Your code here for data analysis and visualization
pass
“`
说明:

此Python脚本使用pandas和matplotlib库来进行数据分析和可视化。它使您能够探索数据集、得出结论并得到数据的可视化表示。
5.3合并多个工作表
“`
# Python script to merge multiple Excel sheets into a single sheet
import pandas as pd
def merge_sheets(file_path, output_file_path):
xls = pd.ExcelFile(file_path)
df = pd.DataFrame()
for sheet_name in xls.sheet_names:
sheet_df = pd.read_excel(xls, sheet_name)
df = df.append(sheet_df)
df.to_excel(output_file_path, index=False)
“`
说明:

此Python脚本将Excel文件中多个工作表的数据合并到一个工作表中。当您将数据分散在不同的工作表中但想要合并它们以进行进一步分析时,这会很方便。

6.与数据库交互
6.1连接到一个数据库
“`
# Python script to connect to a database and execute queries
import sqlite3
def connect_to_database(database_path):
connection = sqlite3.connect(database_path)
return connection
def execute_query(connection, query):
cursor = connection.cursor()
cursor.execute(query)
result = cursor.fetchall()
return result
“`
说明:

此Python脚本允许您连接到SQLite数据库并执行查询。您可以使用适当的Python数据库驱动程序将其调整为与其他数据库管理系统(例如MySQL或PostgreSQL)配合使用。
6.2执行SQL查询
“`
# Python script to execute SQL queries on a database
import sqlite3
def execute_query(connection, query):
cursor = connection.cursor()
cursor.execute(query)
result = cursor.fetchall()
return result
“`
说明:

此Python脚本是在数据库上执行SQL查询的通用函数。您可以将查询作为参数与数据库连接对象一起传递给函数,它将返回查询结果。

6.3数据备份与恢复
“`
import shutil
def backup_database(database_path, backup_directory):
shutil.copy(database_path, backup_directory)
def restore_database(backup_path, database_directory):
shutil.copy(backup_path, database_directory)
“`
说明:

此Python 脚本允许您创建数据库的备份并在需要时恢复它们。这是预防您的宝贵数据免遭意外丢失的措施。

7.社交媒体自动化
7.1发送个性化电子邮件
“`
# Python script to automate posting on Twitter and Facebook
from twython import Twython
import facebook
def post_to_twitter(api_key, api_secret, access_token, access_token_secret, message):
twitter = Twython(api_key, api_secret, access_token, access_token_secret)
twitter.update_status(status=message)
def post_to_facebook(api_key, api_secret, access_token, message):
graph = facebook.GraphAPI(access_token)
graph.put_object(parent_object=’me’, connection_name=’feed’, message=message)
“`
说明:

此 Python 脚本利用Twython和facebook-sdk库自动在Twitter和Facebook上发布内容。您可以使用它将 Python 脚本中的更新、公告或内容直接共享到您的社交媒体配置文件。
7.2社交媒体自动共享
“`
# Python script to automatically share content on social media platforms
import random
def get_random_content():
# Your code here to retrieve random content from a list or database
pass
def post_random_content_to_twitter(api_key, api_secret, access_token, access_token_secret):
content = get_random_content()
post_to_twitter(api_key, api_secret, access_token, access_token_secret, content)
def post_random_content_to_facebook(api_key, api_secret, access_token):
content = get_random_content()
post_to_facebook(api_key, api_secret, access_token, content)
“`
说明:

此Python 脚本自动在Twitter和Facebook上共享随机内容。您可以对其进行自定义,以从列表或数据库中获取内容并定期在社交媒体平台上共享。

7.3 抓取社交媒体数据
“`
# Python script for scraping data from social media platforms
import requests
def scrape_social_media_data(url):
response = requests.get(url)
# Your code here to extract relevant data from the response
“`
说明:

此Python脚本执行网页抓取以从社交媒体平台提取数据。它获取所提供URL的内容,然后使用BeautifulSoup等技术来解析HTML并提取所需的数据。

8.自动化系统任务
8.1管理系统进程
“`
# Python script to manage system processes
import psutil
def get_running_processes():
return [p.info for p in psutil.process_iter([‘pid’, ‘name’, ‘username’])]
def kill_process_by_name(process_name):
for p in psutil.process_iter([‘pid’, ‘name’, ‘username’]):
if p.info[‘name’] == process_name:
p.kill()
“`
说明:

此Python 脚本使用 psutil 库来管理系统进程。它允许您检索正在运行的进程列表并通过名称终止特定进程。

8.2使用 Cron 安排任务
“`
# Python script to schedule tasks using cron syntax
from crontab import CronTab
def schedule_task(command, schedule):
cron = CronTab(user=True)
job = cron.new(command=command)
job.setall(schedule)
cron.write()
“`
说明:

此Python 脚本利用 crontab 库来使用 cron 语法来安排任务。它使您能够定期或在特定时间自动执行特定命令。

8.3自动邮件提醒
“`
# Python script to monitor disk space and send an alert if it’s low
import psutil
def check_disk_space(minimum_threshold_gb):
disk = psutil.disk_usage(‘/’)
free_space_gb = disk.free / (230) # Convert bytes to GB
if free_space_gb < minimum_threshold_gb:
# Your code here to send an alert (email, notification, etc.)
pass
“`
说明:

此Python 脚本监视系统上的可用磁盘空间,并在其低于指定阈值时发送警报。它对于主动磁盘空间管理和防止由于磁盘空间不足而导致潜在的数据丢失非常有用。

9.自动化图像编辑
9.1图像大小调整和裁剪
“`
# Python script to resize and crop images
from PIL import Image
def resize_image(input_path, output_path, width, height):
image = Image.open(input_path)
resized_image = image.resize((width, height), Image.ANTIALIAS)
resized_image.save(output_path)
def crop_image(input_path, output_path, left, top, right, bottom):
image = Image.open(input_path)
cropped_image = image.crop((left, top, right, bottom))
cropped_image.save(output_path)
“`
说明:

此Python脚本使用Python图像库(PIL)来调整图像大小和裁剪图像。它有助于为不同的显示分辨率或特定目的准备图像。

9.2为图像添加水印
“`
# Python script to add watermarks to images
from PIL import Image
from PIL import ImageDraw
from PIL import ImageFont
def add_watermark(input_path, output_path, watermark_text):
image = Image.open(input_path)
draw = ImageDraw.Draw(image)
font = ImageFont.truetype(‘arial.ttf’, 36)
draw.text((10, 10), watermark_text, fill=(255, 255, 255, 128), font=font)
image.save(output_path)
“`
说明:

此Python 脚本向图像添加水印。您可以自定义水印文本、字体和位置,以实现您图像的个性化。

9.3创建图像缩略图

“`
# Python script to create image thumbnails
from PIL import Image
def create_thumbnail(input_path, output_path, size=(128, 128)):
image = Image.open(input_path)
image.thumbnail(size)
image.save(output_path)
“`
说明:

此Python 脚本从原始图像创建缩略图,这对于生成预览图像或减小图像大小以便更快地在网站上加载非常有用。

小结
以上是本文为您介绍的9个可以用于工作自动化的最佳Python脚本。在下篇中,我们将为您介绍网络自动化、数据清理和转换、自动化 PDF 操作、自动化GUI、自动化测试、自动化云服务、财务自动化、自然语言处理。

自动化不仅可以节省时间和精力,还可以降低出错风险并提高整体生产力。通过自定义和构建这些脚本,您可以创建定制的自动化解决方案来满足您的特定需求。

还等什么呢?立即开始使用Python 实现工作自动化,体验简化流程和提高效率的力量。

10.网络自动化
10.1检查网站状态
“`
# Python script to check the status of a website
import requests
def check_website_status(url):
response = requests.get(url)
if response.status_code == 200:
# Your code here to handle a successful response
else:
# Your code here to handle an unsuccessful response
“`
说明:

此Python 脚本通过向提供的 URL 发送 HTTP GET 请求来检查网站的状态。它可以帮助您监控网站及其响应代码的可用性。

10.2自动 FTP 传输
“`
# Python script to automate FTP file transfers
from ftplib import FTP
def ftp_file_transfer(host, username, password, local_file_path, remote_file_path):
with FTP(host) as ftp:
ftp.login(user=username, passwd=password)
with open(local_file_path, ‘rb’) as f:
ftp.storbinary(f’STOR {remote_file_path}’, f)
“`
说明:

此Python 脚本使用 FTP 协议自动进行文件传输。它连接到 FTP 服务器,使用提供的凭据登录,并将本地文件上传到指定的远程位置。

10.3网络配置设置
“`
# Python script to automate network device configuration
from netmiko import ConnectHandler
def configure_network_device(host, username, password, configuration_commands):
device = {
‘device_type’: ‘cisco_ios’,
‘host’: host,
‘username’: username,
‘password’: password,
}
with ConnectHandler(device) as net_connect:
net_connect.send_config_set(configuration_commands)
“`
说明:

此Python 脚本使用 netmiko 库自动配置网络设备,例如 Cisco路由器和交换机。您可以提供配置命令列表,此脚本将在目标设备上执行它们。

11. 数据清理和转换
11.1从数据中删除重复项
“`
# Python script to remove duplicates from data
import pandas as pd
def remove_duplicates(data_frame):
cleaned_data = data_frame.drop_duplicates()
return cleaned_data
“`
说明:

此Python脚本能够利用 pandas 从数据集中删除重复行,这是确保数据完整性和改进数据分析的简单而有效的方法。

11.2数据标准化
“`
# Python script for data normalization
import pandas as pd
def normalize_data(data_frame):
normalized_data = (data_frame – data_frame.min()) / (data_frame.max() – data_frame.min())
return normalized_data
“`
说明:

此Python 脚本使用最小-最大标准化技术对数据进行标准化。它将数据集中的值缩放到 0 到 1 之间,从而更容易比较不同的特征。

11.3处理缺失值

“`
# Python script to handle missing values in data
import pandas as pd
def handle_missing_values(data_frame):
filled_data = data_frame.fillna(method=’ffill’)
return filled_data
“`
说明:

此Python 脚本使用 pandas 来处理数据集中的缺失值。它使用前向填充方法,用先前的非缺失值填充缺失值。

12. 自动化 PDF 操作
12.1从PDF中提取文本
“`
# Python script to extract text from PDFs
importPyPDF2
def extract_text_from_pdf(file_path):
with open(file_path, ‘rb’) as f:
pdf_reader = PyPDF2.PdfFileReader(f)
text = ”
for page_num in range(pdf_reader.numPages):
page = pdf_reader.getPage(page_num)
text += page.extractText()
return text
“`
说明:

此Python 脚本使用PyPDF2库从PDF文件中提取文本。它读取PDF的每一页并将提取的文本编译为单个字符串。

12.2合并多个PDF
“`
# Python script to merge multiple PDFs into a single PDF
import PyPDF2
def merge_pdfs(input_paths, output_path):
pdf_merger = PyPDF2.PdfMerger()
for path in input_paths:
with open(path, ‘rb’) as f:
pdf_merger.append(f)
with open(output_path, ‘wb’) as f:
pdf_merger.write(f)
“`
说明:

此Python脚本将多个PDF文件合并为一个PDF文档。它可以方便地将单独的PDF、演示文稿或其他文档合并为一个统一的文件。

12.3添加密码保护

“`
# Python script to add password protection to a PDF
import PyPDF2
def add_password_protection(input_path, output_path, password):
with open(input_path, ‘rb’) as f:
pdf_reader = PyPDF2.PdfFileReader(f)
pdf_writer = PyPDF2.PdfFileWriter()
for page_num in range(pdf_reader.numPages):
page = pdf_reader.getPage(page_num)
pdf_writer.addPage(page)
pdf_writer.encrypt(password)
with open(output_path, ‘wb’) as output_file:
pdf_writer.write(output_file)
“`
说明:

此Python脚本为PDF文件添加密码保护。它使用密码对PDF进行加密,确保只有拥有正确密码的人才能访问内容。

13. 自动化GUI
13.1自动化鼠标和键盘
“`
# Python script for GUI automation using pyautogui
import pyautogui
def automate_gui():
# Your code here for GUI automation using pyautogui
pass
“`
说明:

此Python 脚本使用 pyautogui 库,通过模拟鼠标移动、单击和键盘输入来自动执行 GUI 任务。它可以与 GUI 元素交互并执行单击按钮、键入文本或导航菜单等操作。

13.2创建简单的 GUI 应用程序
“`
# Python script to create simple GUI applications using tkinter
import tkinter as tk
def create_simple_gui():
# Your code here to define the GUI elements and behavior
pass
“`
说明:

此Python 脚本可以使用 tkinter 库创建简单的图形用户界面 (GUI)。您可以设计窗口、按钮、文本字段和其他 GUI 元素来构建交互式应用程序。

13.3处理GUI事件

“`
# Python script to handle GUI events using tkinter
import tkinter as tk
def handle_gui_events():
pass
def on_button_click():
# Your code here to handle button click event
root = tk.Tk()
button = tk.Button(root, text=”Click Me”, command=on_button_click)
button.pack()
root.mainloop()
“`
说明:

此Python 脚本演示了如何使用 tkinter 处理 GUI 事件。它创建一个按钮小部件并定义了一个回调函数,该函数将在单击按钮时执行。

14. 自动化测试
14.1使用 Python 进行单元测试
“`
# Python script for unit testing with the unittest module
import unittest
def add(a, b):
return a + b
class TestAddFunction(unittest.TestCase):
def test_add_positive_numbers(self):
self.assertEqual(add(2, 3), 5)
def test_add_negative_numbers(self):
self.assertEqual(add(-2, -3), -5)
def test_add_zero(self):
self.assertEqual(add(5, 0), 5)
if __name__ == ‘__main__’:
unittest.main()
“`
说明:

该Python脚本使用unittest模块来执行单元测试。它包括add 函数的测试用例,用正数、负数和零值检查其行为。

14.2用于 Web 测试的 Selenium
“`
# Python script for web testing using Selenium
from selenium import webdriver
def perform_web_test():
driver = webdriver.Chrome()
driver.get(“https://www.example.com”)
# Your code here to interact with web elements and perform tests
driver.quit()
“`
说明:

此Python 脚本使用 Selenium 库来自动化 Web 测试。它启动 Web 浏览器,导航到指定的 URL,并与 Web 元素交互以测试网页的功能。

14.3测试自动化框架

“`
# Python script for building test automation frameworks
# Your code here to define the framework architecture and tools
“`
说明:

构建测试自动化框架需要仔细的规划和组织。该脚本是一个创建自定义的、适合您的特定项目需求的测试自动化框架的起点。它涉及定义架构、选择合适的工具和库以及创建可重用的测试函数。

15. 自动化云服务
15.1向云空间上传文件
“`
# Python script to automate uploading files to cloud storage
# Your code here to connect to a cloud storage service (e.g., AWS S3, Google Cloud Storage)
# Your code here to upload files to the cloud storage
“`
说明:

自动将文件上传到云存储的过程可以节省时间并简化工作流程。利用相应的云服务API,该脚本可作为将云存储功能集成到 Python 脚本中的起点。

15.2管理AWS资源
“`
# Python script to manage AWS resources using Boto3
import boto3
def create_ec2_instance(instance_type, image_id, key_name, security_group_ids):
ec2 = boto3.resource(‘ec2’)
instance = ec2.create_instances(
ImageId=image_id,
InstanceType=instance_type,
KeyName=key_name,
SecurityGroupIds=security_group_ids,
MinCount=1,
MaxCount=1
)
return instance[0].id
“`
说明:

此Python 脚本使用 Boto3 库与 Amazon Web Services (AWS) 交互并创建 EC2 实例。它可以扩展以执行各种任务,例如创建 S3 buckets、管理 IAM 角色或启动 Lambda 函数。

15.3自动化 Google 云端硬盘

“`
# Python script to automate interactions with Google Drive
# Your code here to connect to Google Drive using the respective API
# Your code here to perform tasks such as uploading files, creating folders, etc.
“`
说明:

以编程方式与Google Drive 交互可以简化文件管理和组织。该脚本可以充当一个利用 Google Drive API 将 Google Drive 功能集成到 Python 脚本中的起点。

16. 财务自动化
16.1分析股票价格
“`
# Python script for stock price analysis
# Your code here to fetch stock data using a financial API (e.g., Yahoo Finance)
# Your code here to analyze the data and derive insights
“`
说明:

自动化获取和分析股票价格数据的过程对投资者和金融分析师来说是十分有益的。该脚本可作为一个使用金融 API 将股票市场数据集成到 Python 脚本中的起点。

16.2货币汇率
“`
# Python script to fetch currency exchange rates
# Your code here to connect to a currency exchange API (e.g., Fixer.io, Open Exchange Rates)
# Your code here to perform currency conversions and display exchange rates
“`
说明:

此Python 脚本利用货币兑换 API 来获取和显示不同货币之间的汇率。它可用于财务规划、国际贸易或旅行相关的应用程序。

16.3预算追踪

“`
# Python script for budget tracking and analysis
# Your code here to read financial transactions from a CSV or Excel file
# Your code here to calculate income, expenses, and savings
# Your code here to generate reports and visualize budget data
“`
说明:

此Python 脚本使您能够通过从 CSV 或 Excel 文件读取财务交易来跟踪和分析预算。它反映有关收入、支出和储蓄的情况,帮助您作出明智的财务决策。

17. 自然语言处理
17.1情感分析
“`
# Python script for sentiment analysis using NLTK or other NLP libraries
import nltk
from nltk.sentiment import SentimentIntensityAnalyzer
defanalyze_sentiment(text):
nltk.download(‘vader_lexicon’)
sia = SentimentIntensityAnalyzer()
sentiment_score = sia.polarity_scores(text)
return sentiment_score
“`
说明:

此Python 脚本使用 NLTK 库对文本数据进行情感分析。它计算情绪分数,这个分数表示所提供文本的积极性、中立性或消极性。

17.2文本摘要
“`
# Python script for text summarization using NLP techniques
# Your code here to read the text data and preprocess it (e.g., removing stop words)
# Your code here to generate the summary using techniques like TF-IDF, TextRank, or BERT“`
说明:

文本摘要自动执行为冗长的文本文档创建简洁摘要的过程。该脚本可作为使用NLP 库实现各种文本摘要技术的起点。

17.3语言翻译

“`
# Python script for language translation using NLP libraries
# Your code here to connect to a translation API (e.g., Google Translate, Microsoft Translator)
# Your code here to translate text between different languages“`
说明:

自动化语言翻译可以促进跨越语言障碍的沟通。该脚本可适配连接各种翻译API并支持多语言通信。

结论
在本文中,我们探索了17个可以跨不同领域自动执行各种任务的 Python 脚本。从网页抓取和网络自动化到机器学习和物联网设备控制,Python 的多功能性使我们能够高效地实现各种流程的自动化。

自动化不仅可以节省时间和精力,还可以降低出错风险并提高整体生产力。通过自定义和构建这些脚本,您可以创建定制的自动化解决方案来满足您的特定需求。

富士施乐、东芝打印机墨量监控

#!/usr/bin/python
# -*- coding: UTF-8 -*-
import requests
import os
import multiprocessing
import threading
from selenium import webdriver
from time import sleep
import time
import json
from selenium.webdriver.chrome.options import Options
#通过centos配置crontab来设置自动运行时间
chrome_options = Options()
chrome_options.add_argument(‘–no-sandbox’)
chrome_options.add_argument(‘–disable-dev-shm-usage’)
chrome_options.add_argument(‘–headless’)
#地址为chromedriver的绝对路径,相对路径在自动化任务中无法执行
driver = webdriver.Chrome(executable_path=’/root/chromedriver’, chrome_options = chrome_options)
#富士施乐彩打
def printer_apeos(pn, pi):
    pingResult = os.system(‘/usr/bin/ping -c 4 ‘ + pi)
    if pingResult == 0:
        printerBrowser = “http://” + pi + “/home/index.html#hashSupplies/hashHome”
        driver.get(printerBrowser)
        sleep(3)
        # productName = driver.find_element_by_xpath(“//*[@id=’navA’]/span[1]”).text
        tonerC = driver.find_element_by_xpath(“//*[@id=’TONER_C’]/td[3]/span”).text
        tonerM = driver.find_element_by_xpath(“//*[@id=’TONER_M’]/td[3]/span”).text
        tonerY = driver.find_element_by_xpath(“//*[@id=’TONER_Y’]/td[3]/span”).text
        tonerK = driver.find_element_by_xpath(“//*[@id=’TONER_K’]/td[3]/span”).text
        if tonerC < ‘30%’ and tonerC != ‘100%’:
            tonerC = “<font color=red>” + tonerC + “</font>”
        if tonerM < ‘30%’ and tonerM != ‘100%’:
            tonerM = “<font color=red>” + tonerM + “</font>”
        if tonerY < ‘30%’ and tonerY != ‘100%’:
            tonerY = “<font color=red>” + tonerY + “</font>”
        if tonerK < ‘30%’ and tonerK != ‘100%’:
            tonerK = “<font color=red>” + tonerK + “</font>”
        pif = “[” + pn + “](” + printerBrowser + “) ” + tonerC + ” ” + tonerM + ” ” + ” ” + tonerY + ” ” + tonerK
        # print(pif)
        sleep(2)
    else:
        pif = ‘timeout,请检查该打印机’
    return pif
#东芝彩打
def printer_toshiba(pn, pi):
    pingResult = os.system(‘/usr/bin/ping -c 4 ‘ + pi)
    if pingResult == 0:
        printerBrowser = “http://” + pi + “/?MAIN=TOPACCESS”
        driver.get(printerBrowser)
        sleep(5)
        driver.switch_to.frame(“TopLevelFrame”)
        driver.switch_to.frame(“contents”)
        # productName = driver.find_element_by_xpath(“//*[@id=’navA’]/span[1]”).text
        yellowToner = driver.find_element_by_xpath(“/html/body/form/table/tbody/tr[6]/td[1]/table[2]/tbody/tr[1]/td[3]”).text
        magentaToner = driver.find_element_by_xpath(“/html/body/form/table/tbody/tr[6]/td[1]/table[2]/tbody/tr[2]/td[3]”).text
        cyanToner = driver.find_element_by_xpath(“/html/body/form/table/tbody/tr[6]/td[1]/table[2]/tbody/tr[3]/td[3]”).text
        blackToner = driver.find_element_by_xpath(“/html/body/form/table/tbody/tr[6]/td[1]/table[2]/tbody/tr[5]/td[3]”).text
        if cyanToner < ‘30%’ and cyanToner != ‘100%’:
            cyanToner = “<font color=red>” + cyanToner + “</font>”
        if magentaToner < ‘30%’ and magentaToner != ‘100%’:
            magentaToner = “<font color=red>” + magentaToner + “</font>”
        if yellowToner < ‘30%’ and yellowToner != ‘100%’:
            yellowToner = “<font color=red>” + yellowToner + “</font>”
        if blackToner < ‘30%’ and blackToner != ‘100%’:
            blackToner = “<font color=red>” + blackToner + “</font>”
        pif = “[” + pn + “](” + printerBrowser + “) ”  + cyanToner + ” ” + magentaToner  + ” ” + yellowToner + ” ” + blackToner
        # print(pif)
        sleep(2)
    else:
        pif = ‘timeout,请检查该打印机’
    return pif
# 东芝黑白
def printer_toshiba_black(pn, pi):
    pingResult = os.system(‘/usr/bin/ping -c 4 ‘ + pi)
    if pingResult == 0:
        printerBrowser = “http://” + pi + “/?MAIN=TOPACCESS”
        # http: // 192.168.52.222 /?MAIN = TOPACCESS
        driver.get(printerBrowser)
        sleep(3)
        driver.switch_to.frame(“TopLevelFrame”)
        driver.switch_to.frame(“contents”)
        # productName = driver.find_element_by_xpath(“//*[@id=’navA’]/span[1]”).text
        blackToner = driver.find_element_by_xpath(
            “/html/body/form/table/tbody/tr[6]/td[1]/table[2]/tbody/tr/td[3]”).text
        if blackToner < ‘30%’ and blackToner != ‘100%’:
            blackToner = “<font color=red>” + blackToner + “</font>”
        pif = “[” + pn + “](” + printerBrowser + “) ” + blackToner
        # print(pif)
        sleep(2)
    else:
        pif = ‘timeout,请检查该打印机’
    return pif
printerInfo = “打印机 青色 品红色 黄色 黑色”
printer1FA1 = printer_apeos(‘1F-A1’, ‘192.168.52.101’)
printer1FB1 = printer_apeos(‘1F-B1’, ‘192.168.52.108’)
printer1FC1 = printer_apeos(‘1F-C1’, ‘192.168.52.115’)
printer1FD1 = printer_apeos(‘1F-D1’, ‘192.168.52.117’)
printer1FD2 = printer_apeos(‘1F-D2’, ‘192.168.52.121’)
printer2FE1 = printer_apeos(‘2F-E1’, ‘192.168.52.227’)
printer2FE2 = printer_apeos(‘2F-E2’, ‘192.168.52.221’)
printer2FE3 = printer_apeos(‘2F-E3’, ‘192.168.52.234’)
printer2FE4 = printer_apeos(‘2F-E4’, ‘192.168.52.235’)
printer2FF1 = printer_apeos(‘2F-F1’, ‘192.168.52.206’)
printer2FF2 = printer_apeos(‘2F-F2’, ‘192.168.52.203’)
printer2FF4 = printer_apeos(‘2F-F4’, ‘192.168.52.237’)
printer2FG1 = printer_apeos(‘2F-G1’, ‘192.168.52.209’)
printer2FH1 = printer_apeos(‘2F-H1’, ‘192.168.52.216’)
printer2FH2 = printer_apeos(‘2F-H2’, ‘192.168.52.217’)
finance2505 = printer_toshiba(‘财务2505’, ‘192.168.52.239’)
finance2515 = printer_toshiba(‘财务2515’, ‘192.168.52.238’)
operations = printer_toshiba_black(‘业务3508’, ‘192.168.52.222’)
# 所有打印机组合字符串
printer = printerInfo + “\n” + printer1FA1 + “\n” + printer1FB1 + “\n” + printer1FC1 + “\n” + printer1FD1 + “\n” + printer1FD2 + “\n” + printer2FE1 + “\n” \
          + printer2FE2 + “\n” + printer2FE3 + “\n” + printer2FE4 + “\n” + printer2FF1 + “\n” + printer2FF2 + “\n” + printer2FF4 + “\n” \
          + printer2FG1 + “\n” + printer2FH1 + “\n” + printer2FH2 + “\n” + finance2505 + “\n” + finance2515 + “\n” + operations
# driver.get(‘http://192.168.52.237/home/index.html#hashSupplies/hashHome’)
# sleep(3)
# # driver.get_screenshot_as_file(“D:\\test\\2F-F4” + time_format() + “.png”)
# # tonerC = driver.find_element_by_xpath(“//*[@id=’TONER_C’]/td[3]/span”).text
headers = {
    ‘Content-Type’: ‘application/json’,
}
params = (
    (‘key’, ‘shijizhi’),
)
# data = ‘{“msgtype”: “text”,”text”: {“content”: ‘ + ‘”‘ + printer + ‘”‘ + ‘}}’
#
#print(data)
# response = requests.post(‘https://qyapi.weixin.qq.com/cgi-bin/webhook/send’, headers=headers, params=params, data=data.encode(‘utf-8’))
data = ‘{“msgtype”: “markdown”,”markdown”: {“content”: “‘ + printer + ‘”}}’
# print(data)
# response = requests.post(‘https://qyapi.weixin.qq.com/cgi-bin/webhook/send’, headers=headers, params=params, data=data.encode(‘utf-8’))
driver.quit()

Python调用powershell监控电源是交流电还是直流电

#!/usr/bin/python
# -*- coding: UTF-8 -*-
import requests
import os
from time import sleep
import time
import json
from glob import glob
import subprocess as sp


class PowerShell:
    # from scapy
    def __init__(self, coding, ):
        cmd = [self._where('PowerShell.exe'),
               "-NoLogo", "-NonInteractive",  # Do not print headers
               "-Command", "-"]  # Listen commands from stdin
        startupinfo = sp.STARTUPINFO()
        startupinfo.dwFlags |= sp.STARTF_USESHOWWINDOW
        self.popen = sp.Popen(cmd, stdout=sp.PIPE, stdin=sp.PIPE, stderr=sp.STDOUT, startupinfo=startupinfo)
        self.coding = coding

    def __enter__(self):
        return self

    def __exit__(self, a, b, c):
        self.popen.kill()

    def run(self, cmd, timeout=15):
        b_cmd = cmd.encode(encoding=self.coding)
        try:
            b_outs, errs = self.popen.communicate(b_cmd, timeout=timeout)
        except sp.TimeoutExpired:
            self.popen.kill()
            b_outs, errs = self.popen.communicate()
        outs_str = b_outs.decode(encoding=self.coding)
        outs = outs_str[27:34].strip()
        headers = {
            'Content-Type': 'application/json',
        }

        params = (
            ('key', '3ab16392-0258-4239-b4a3-cb1c8f0dffd7'),
        )


        # print(data)
        if outs == "Online":
            outs = "市电正常"
            # print(len(outs[27:34].strip()))

            data = '{"msgtype": "markdown","markdown": {"content": ' + '"' + outs + '"' + '}}'
            response = requests.post('https://qyapi.weixin.qq.com/cgi-bin/webhook/send', headers=headers, params=params, data=data.encode('utf-8'))
        else:
            outs = "市电异常"
            # print(len(outs[27:34].strip()))

            data = '{"msgtype": "markdown","markdown": {"content": ' + '"' + outs + '"' + '}}'
            response = requests.post('https://qyapi.weixin.qq.com/cgi-bin/webhook/send', headers=headers, params=params,
                                     data=data.encode('utf-8'))

        return outs, errs

    @staticmethod
    def _where(filename, dirs=None, env="PATH"):
        """Find file in current dir, in deep_lookup cache or in system path"""
        if dirs is None:
            dirs = []
        if not isinstance(dirs, list):
            dirs = [dirs]
        if glob(filename):
            return filename
        paths = [os.curdir] + os.environ[env].split(os.path.pathsep) + dirs
        try:
            return next(os.path.normpath(match)
                        for path in paths
                        for match in glob(os.path.join(path, filename))
                        if match)
        except (StopIteration, RuntimeError):
            raise IOError("File not found: %s" % filename)


if __name__ == '__main__':
    # Example:
    with PowerShell('GBK') as ps:
        outs, errs = ps.run('Add-Type -AssemblyName System.Windows.Forms;[System.windows.Forms.SystemInformation]::PowerStatus')
    # print('error:', os.linesep, errs)
    # print('output:', os.linesep, outs)