第一个python脚本

Posted haomengzhen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第一个python脚本相关的知识,希望对你有一定的参考价值。

#脚本用于创建es索引及别名

#!/usr/bin/python
import json
import requests
import datetime
import time

#get tomorrow date
now = datetime.datetime.now()
delta = datetime.timedelta(days=1)
n_days = now + delta


tomorrowDate2 = int(n_days.strftime(‘%M‘))//10
str = ‘%d‘%tomorrowDate2
tomorrowDate = n_days.strftime(‘%Y-%m-%d-%H‘)+"-"+str

#create_indices_function
def create_index(type):
index_name = type+"-njyh-"+tomorrowDate
req = "http://ip:9600/" + index_name + "/"
stats = requests.put(req).json()
time.sleep(1)
return

#create_alias_function_function
def create_alias(type,alias_name):
index_name = type+"-njyh-"+tomorrowDate
req="http://ip:9600/"+index_name+"/_alias/"+alias_name+"-"+tom0rrowDate
requests.put(req)
time.sleep(1)
return

list1 = [‘index_name1‘,‘index_name2‘]
for index in range(len(list1)):
create_index(list1[index])
create_alias(list1[index],list1[index])

以上是关于第一个python脚本的主要内容,如果未能解决你的问题,请参考以下文章

python的第一个脚本的编写

在第二个脚本函数中传递来自第一个 python 脚本主函数的数据

Python 第一个脚本

第一个python程序,从安装python环境到人生第一个py脚本运行全过程

第一个python脚本

python 如何调用带参数的shell脚本