Initial production backup

This commit is contained in:
Tesscorp
2026-07-15 19:45:08 -06:00
commit 65b7af866f
433 changed files with 24089 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import urllib.request
import urllib.error
req = urllib.request.Request('https://trimape.mx/contacto-action', data=b'nombre=Test&email=test@test.com&ciudad=Test&telefono=123&descripcion=test')
try:
res = urllib.request.urlopen(req)
print("STATUS:", res.getcode())
print("BODY:", res.read().decode('utf-8'))
except urllib.error.HTTPError as e:
print("ERROR STATUS:", e.code)
print("ERROR BODY:", e.read().decode('utf-8'))