pyWSArchiPRO
pyWSArchiPRO
Protocollazioni e recupero Documenti da WSArchiPRO con Python
Published by UNIVERSITA' DELLA CALABRIA
Technical contact Giuseppe De Marco
Vitality:
65%
The vitality index, as explicited in the guidelines for the acquisition and reuse of software for Italian PA, is calculated according to the following four main categories:
- Code activity: the daily number of commits and merges;
- Release history: the daily number of releases;
- User community: the number of unique authors;
- Longevity: the age of the project.
The ranges of every measure can be found in the vitality-ranges.yml file.
Development status: beta
Software functionality
Protocollazione
detailed information
pyWSArchiPRO
pyWSArchiPRO
Last release 2019-02-01
Type of maintenance community
License AGPL-3.0-only
Platforms
linux
List of dependencies None
Enabling platforms None
Compliance None
Extended description
Protocollazione e recupero documenti da WSArchiPRO con Python tramite interfaccia ws SOAP.
Qui di seguito è presentato un esempio di recupero di un protocollo:
from protocollo_ws.protocollo import Protocollo wsclient = Protocollo(wsdl_url=PROT_URL, username=PROT_LOGIN, password=PROT_PASSW, aoo=PROTOCOLLO_AOO, anno=2018, numero=234234)
# Recupera
wsclient.get()
# Salva i file in locale
wsclient.dumpfiles()
# Renderizza il documento che descrive il flusso di protocollazione (dataXML).
wsclient.render_dataXML()