#!/usr/bin/python # -*- coding: UTF-8 -*- import requests, json, sys url = 'http://tomcat-1.dev.local.jamgo.org:8080/location-server/resources/category' data = { "id": 1, "name": "Textil, calcat i moda update update 6", "description": "", "type": None, "parent": None, "customerCount": 94, "iconPath": None } headers = {'content-type': 'application/json'} r = requests.put(url, data=json.dumps(data), headers=headers) print r.status_code print(r.text)
Python 3
import datetime f"{datetime.datetime.now():%Y%m%d_%H%M%S}" '20191015_212507'
Python 2
from datetime import datetime
fecha = datetime.now() print(fecha.strftime("%Y/%m/%d_%H:%M:%S"))
Para mas seguridad se crean entornos virtuales
Crear entorno para vosk
python3 -m venv ~/mi_entorno_vosk
USar el entorno
source ~/mi_entorno_vosk/bin/activate
Ahora aparece en el prompt el entorno y los paquetes que se instalen están solo aquí
(mi_entorno_vosk) jose@avtp239:~$ pip3 install vosk