{{ t('nav.language') }}
{{ t('services.' + service.key + '.description') }}
{{ t('products.ypwAccount.description') }}
{{ t('products.ypwStorage.description') }}
import http.client
import json
conn = http.client.HTTPSConnection("account.ypw.com.do")
payload = json.dumps({
"username": "null",
"password": "null",
"appConnect": "miapp"
})
headers = {
"Content-Type": "application/json"
}
conn.request("POST", "/api/v1/account/login", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
import http.client
import json
conn = http.client.HTTPSConnection("storage.ypw.com.do")
payload = json.dumps({
"name": "mifile",
"type": "zip",
"path": "/home/documents"
})
headers = { "Content-Type": "application/json" }
conn.request("POST", "/api/v1/file/save", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
{{ t('contact.emailLabel') }}
[email protected]{{ t('contact.phoneLabel') }}
+1 829 557-1997{{ t('contact.addressLabel') }}
{{ t('contact.addressText') }}