-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython2.py
76 lines (63 loc) · 1.94 KB
/
python2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# step1=assign a variable with python2 text
# step2=make a file2.py with this text
# step3=convert with the 2to3 module within the code
# step4= extract the text from the converted file
import os
python2='''
import sys
try:
import pandas as pd
global pd
from io import StringIO
global StringIO
import re
import boto3
global re
s3 = boto3.resource('s3')
my_bucket = s3.Bucket('outletipcam-new')
outlets="select code from outlets"
outlets=execute_query("ProdDB",outlets)['rows']
from datetime import date,timedelta
today = date.today() - timedelta(days=1)
today_minus_8=date.today() - timedelta(days=8)
print today_minus_8
last_seven_days=[]
seven_forteen_days=[]
for i in range(1,8):
last_seven_days.append(date.today() - timedelta(days=i))
for i in range(8,15):
seven_forteen_days.append(date.today() - timedelta(days=i))
print last_seven_days
print seven_forteen_days
# outlet/date/camerano/
# df=pd.DataFrame()
datalist=[]
# for i in outlets:
count=0
for object_summary in my_bucket.objects.filter(Prefix="PUN-1040/{}".format(today_minus_8)):
count=count+1
# print object_summary.key
# break
print count
except Exception as e:
print e
print 'Error on line {}'.format(sys.exc_info()[-1].tb_lineno)
'''
myVar="file2"
x = open (myVar+".py", "w")
x.write(python2)
x.close()
# os.system("Echo Hello World")
# os.system("echo This is sample text > MyFile.txt")
os.system("2to3 -w file2.py")
# Note for Devops:Running this os.system(2to3 -w file2.py) command in virtual environment
# Run 2to3 file2.py
python3=''' '''
a="file2.py"
filetoopen=open(a,'r')
line=filetoopen.readline()
while(line!=""):
python3=python3+line
line=filetoopen.readline()
filetoopen.close()
print (python3)