my-cloud-devops-consulting 1.1.202507090924__py3-none-any.whl → 1.1.202507090955__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- app.py +8 -2
- {my_cloud_devops_consulting-1.1.202507090924.dist-info → my_cloud_devops_consulting-1.1.202507090955.dist-info}/METADATA +1 -1
- my_cloud_devops_consulting-1.1.202507090955.dist-info/RECORD +5 -0
- my_cloud_devops_consulting-1.1.202507090924.dist-info/RECORD +0 -5
- {my_cloud_devops_consulting-1.1.202507090924.dist-info → my_cloud_devops_consulting-1.1.202507090955.dist-info}/WHEEL +0 -0
- {my_cloud_devops_consulting-1.1.202507090924.dist-info → my_cloud_devops_consulting-1.1.202507090955.dist-info}/top_level.txt +0 -0
app.py
CHANGED
@@ -184,11 +184,17 @@ def subscribe():
|
|
184
184
|
return redirect(url_for('home'))
|
185
185
|
# 👇 Add this before the final block
|
186
186
|
|
187
|
-
|
187
|
+
|
188
|
+
from flask import Response
|
188
189
|
|
189
190
|
@app.route('/google77f25e63bec6dd80.html')
|
190
191
|
def google_verification():
|
191
|
-
|
192
|
+
with open('google77f25e63bec6dd80.html') as f:
|
193
|
+
return Response(f.read(), mimetype='text/html')
|
194
|
+
|
195
|
+
@app.route('/sitemap.xml')
|
196
|
+
def sitemap():
|
197
|
+
return app.send_static_file('sitemap.xml')
|
192
198
|
|
193
199
|
|
194
200
|
|
@@ -0,0 +1,5 @@
|
|
1
|
+
app.py,sha256=1hpC4RMvFogBoNGA8ZWOsbR9qOw3Y3xIHbFhxms61oQ,7165
|
2
|
+
my_cloud_devops_consulting-1.1.202507090955.dist-info/METADATA,sha256=u40u2iOtJViH-ABp8qGVS3WjrRp7Swdlz8m4BEAlkgI,3329
|
3
|
+
my_cloud_devops_consulting-1.1.202507090955.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4
|
+
my_cloud_devops_consulting-1.1.202507090955.dist-info/top_level.txt,sha256=io9g7LCbfmTG1SFKgEOGXmCFB9uMP2H5lerm0HiHWQE,4
|
5
|
+
my_cloud_devops_consulting-1.1.202507090955.dist-info/RECORD,,
|
@@ -1,5 +0,0 @@
|
|
1
|
-
app.py,sha256=MQLd_aeQGjeH29FGtX2nqQ8j7v-722tFM4UTIxalkhE,7045
|
2
|
-
my_cloud_devops_consulting-1.1.202507090924.dist-info/METADATA,sha256=Mh1_Cc_LqEhbkkjeXf_W6rXjRUej4_NYBYD32DNvBV8,3329
|
3
|
-
my_cloud_devops_consulting-1.1.202507090924.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4
|
-
my_cloud_devops_consulting-1.1.202507090924.dist-info/top_level.txt,sha256=io9g7LCbfmTG1SFKgEOGXmCFB9uMP2H5lerm0HiHWQE,4
|
5
|
-
my_cloud_devops_consulting-1.1.202507090924.dist-info/RECORD,,
|
File without changes
|