YPW Logo

Yolfry Paginas Web YPW S.R.L.

{{ t('hero.subtitle') }}

{{ t('buttons.exploreServices') }}

{{ t('services.title') }}

{{ t('services.' + service.key + '.title') }}

{{ t('services.' + service.key + '.description') }}

{{ t('products.title') }}

YPW Account

{{ t('products.ypwAccount.description') }}

{{ t('products.ypwAccount.featuresTitle') }}

  • {{ t('products.ypwAccount.feature1') }}
  • {{ t('products.ypwAccount.feature2') }}
  • {{ t('products.ypwAccount.feature3') }}
{{ t('buttons.viewDocs') }}

YPW Storage

{{ t('products.ypwStorage.description') }}

{{ t('products.ypwStorage.endpointsTitle') }}

  • mkdir - {{ t('products.ypwStorage.endpoint.mkdir') }}
  • rm - {{ t('products.ypwStorage.endpoint.rm') }}
  • ls - {{ t('products.ypwStorage.endpoint.ls') }}
  • mv - {{ t('products.ypwStorage.endpoint.mv') }}
  • du - {{ t('products.ypwStorage.endpoint.du') }}
  • image/save - {{ t('products.ypwStorage.endpoint.imageSave') }}
{{ t('buttons.viewDocs') }}

YPW Account


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"))

YPW Storage


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.title') }}

{{ t('contact.emailLabel') }}

[email protected]

{{ t('contact.phoneLabel') }}

+1 829 557-1997

{{ t('contact.addressLabel') }}

{{ t('contact.addressText') }}

Instagram

@ypwsrl

{{ t('contact.followUs') }}