
xlstat
Paquet d’installation silencieuse pour xlstat
27.1.0-1
- package: tis-xlstat
- name: xlstat
- version: 27.1.0-1
- maintainer: Amel FRADJ
- licence: Copyright ©2024 Lumivero. Tous droits réservés.
- target_os: windows
- architecture: x64
- signature_date:
- size: 186.48 Mo
- homepage : https://www.xlstat.com/en/
package : tis-xlstat
version : 27.1.0-1
architecture : x64
section : base
priority : optional
name : xlstat
categories :
maintainer : Amel FRADJ
description : XLSTAT is a powerful and flexible Excel data analysis add-in that enables over 150,000 users in more than 120 countries worldwide to analyze, customize and share results in Microsoft Excel
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : XLSTAT est un module complémentaire d'analyse de données Excel puissant et flexible qui permet à plus de 150 000 utilisateurs dans plus de 120 pays à travers le monde d'analyser, de personnaliser et de partager les résultats dans Microsoft Excel
description_pl : XLSTAT to potężny i elastyczny dodatek do analizy danych w programie Excel, który umożliwia ponad 150 000 użytkowników w ponad 120 krajach na całym świecie analizowanie, dostosowywanie i udostępnianie wyników w programie Microsoft Excel
description_de : XLSTAT ist ein leistungsstarkes und flexibles Excel-Zusatzmodul für die Datenanalyse, mit dem mehr als 150.000 Benutzer in über 120 Ländern weltweit Ergebnisse in Microsoft Excel analysieren, anpassen und weitergeben können
description_es : XLSTAT es un complemento de análisis de datos de Excel potente y flexible que permite a más de 150.000 usuarios de más de 120 países de todo el mundo analizar, personalizar y compartir resultados en Microsoft Excel
description_pt : O XLSTAT é um suplemento de análise de dados do Excel poderoso e flexível que permite a mais de 150.000 utilizadores em mais de 120 países em todo o mundo analisar, personalizar e partilhar resultados no Microsoft Excel
description_it : XLSTAT è un potente e flessibile componente aggiuntivo di Excel per l'analisi dei dati che consente a oltre 150.000 utenti in più di 120 paesi del mondo di analizzare, personalizzare e condividere i risultati in Microsoft Excel
description_nl : XLSTAT is een krachtige en flexibele invoegtoepassing voor gegevensanalyse in Excel waarmee meer dan 150.000 gebruikers in meer dan 120 landen wereldwijd resultaten in Microsoft Excel kunnen analyseren, aanpassen en delen
description_ru : XLSTAT - это мощная и гибкая надстройка для анализа данных в Excel, которая позволяет более 150 000 пользователей в более чем 120 странах мира анализировать, настраивать и делиться результатами в Microsoft Excel
audit_schedule :
editor :
keywords :
licence : Copyright ©2024 Lumivero. Tous droits réservés.
homepage : https://www.xlstat.com/en/
package_uuid : 64d29ca1-7b73-4c2e-aa37-b8a1177707f4
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : f738d257f1d41af3f7c5f6cd724a6486cf1745f3260d273c345bef1ea0d96e0f
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-05-20T13:03:58.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : RWIE/9sOD0in1xheJ6cDg94X9c2IQru1MU+N58QkIpPujsXFLrci78OS4WcshC7BtZdFrg8WozOJ5SMv8i3TSWG7pHCs3SX3Ppso27FBRRN2Oa2802rnBsN1CK2VNdgx0KWH+Cy2DwOurTybOEiGo6xcnVarR4sgWzZpOGxCut7WwwIFbfklYjJEnZfVQF870dTQB7OK7z/stCjc8suct93IIKea5mt3sfUV4BQJX7s0mhPcR5n8q3D5dpEujetu4KdUFbee0VVZdpmG4vS5863i8ZL7veO/3naegdZgngNZb4ysJPFMNCTInhQRz9a/Prc/lgseJc+uTCebYN/iDA==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
if params.get("install_with_luti", False):
WAPT.install("tis-microsoft-office-365-business")
# Installing the software
install_msi_if_needed("xlstat_x64.msi")
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
from zipfile import ZipFile
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
dict_arch = {
"x64": "_x64.msi",
"x86": "_x86.msi"
}
url_base = "https://help.xlstat.com/6533-xlstat-silent-installation-windows"
# Extract the correct div using bs_find_all
divs = bs_find_all(url_base, "div","class","rte", proxies=proxies,verify=r'xlstat-com-chain.pem')
msi_file = None
for div in divs:
links = div.find_all('a', href=True)
for link in links:
href = link['href']
# Vérifier si le lien correspond à l'architecture actuelle
if dict_arch.get(control.architecture) in href:
msi_file = href
latest_bin = msi_file.split('/')[-1]
download_url = msi_file
break
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies,verify_cert=r'xlstat-com-chain.pem')
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.exe'):
if f != latest_bin:
remove_file(f)
# Obtenir la version à partir du binaire
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
b459b28d64335ec36929de75179ec5f315c4df513c3aaea0dee3f94265bf0654 : WAPT/control
f738d257f1d41af3f7c5f6cd724a6486cf1745f3260d273c345bef1ea0d96e0f : WAPT/icon.png
db3e9e499ee64e96557f984350f28848bbaa1a8ba34d4324e0dd342e5551a873 : luti.json
124c1a1154f248db4e9866bcfb13dc4bbf6d157a99f7a46e01672e17c7752308 : setup.py
5c88b67dcfee0ae41629409a738a7498814b11aa759e214c6ffe2cd8b1abd702 : update_package.py
6da10533665b1c5e0a7da75d77279cb3ff5773df3aab1ec54208b2a586a856bf : xlstat-com-chain.pem
81dc2746bbd3fb912ec40f02bb8193427c3477e56e721d2347d9acea28dbe24e : xlstat_x64.msi