- package: tis-atelier-scientifique-eleve-svt
- name: Atelier Scientifique Eleve SVT
- version: 8.1.7-1
- categories: Education
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
- licence: proprietary_free,wapt_private
- locale: fr
- target_os: windows
- architecture: all
- signature_date:
- size: 47.32 Mo
- homepage : https://jeulin.com/jeulin_fr/
package : tis-atelier-scientifique-eleve-svt
version : 8.1.7-1
architecture : all
section : base
priority : optional
name : Atelier Scientifique Eleve SVT
categories : Education
maintainer : WAPT Team,Tranquil IT,Amel FRADJ,
description : Atelier Scientifique Eleve SVT (Jeulin), this software will enable students to carry out experimental acquisitions in SVT, visualize the results, carry out treatments and reports
depends :
conflicts :
maturity : PROD
locale : fr
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Atelier Scientifique Eleve SVT (Jeulin), ce logiciel va permettre aux élèves de réaliser des acquisitions expérimentales en SVT, de visualiser les résultats, d'effectuer les traitements et des comptes-rendus
description_pl : Atelier Scientifique Eleve SVT (Jeulin), to oprogramowanie umożliwi uczniom przeprowadzanie eksperymentów w SVT, wizualizację wyników, ich przetwarzanie i raportowanie
description_de : Atelier Scientifique Eleve SVT (Jeulin), diese Software ermöglicht es den Schülern, im Fach SVT Experimente durchzuführen, die Ergebnisse zu visualisieren, zu bearbeiten und zu protokollieren
description_es : Atelier Scientifique Eleve SVT (Jeulin), este programa informático permitirá a los alumnos realizar trabajos experimentales en SVT, visualizar los resultados, procesarlos e informar sobre ellos
description_pt : Atelier Scientifique Eleve SVT (Jeulin), este software permitirá aos alunos efetuar trabalhos experimentais em SVT, visualizar os resultados, tratá-los e elaborar relatórios
description_it : Atelier Scientifique Eleve SVT (Jeulin), questo software consentirà agli alunni di svolgere lavori sperimentali in SVT, di visualizzare i risultati, di elaborarli e di redigere relazioni
description_nl : Atelier Scientifique Eleve SVT (Jeulin), met deze software kunnen leerlingen experimenteel werk uitvoeren in SVT, de resultaten visualiseren, verwerken en erover rapporteren
description_ru : Atelier Scientifique Eleve SVT (Jeulin) - это программное обеспечение позволит ученикам проводить экспериментальные работы в SVT, визуализировать результаты, обрабатывать их и составлять отчеты
audit_schedule :
editor :
keywords :
licence : proprietary_free,wapt_private
homepage : https://jeulin.com/jeulin_fr/
package_uuid : e77d0b3a-3df6-45dc-8ef8-5fb132d34971
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : dc46e83040a5f1ae4e8f7f846b012b1590847e532f84b08f1149e1863dc63ef5
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2024-09-11T10:58:12.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 : U1qN88jmB9IJ0T7pU42NB6JkZ4xqDBH7QXBs7PptXYwB5E5QKN2uxd95eD0QYVsY22uNohzyXB/bvZCuy51kd/J1Y28DDduBDLc1h2zS4EVT3wWgus5veae5RfOxAE+KNU0jXIJwCsWCtQeY2n4hw8UToQjlgbBeL9KPBUKlLscGzoapAIimMbuU5R3l1GfcxB+/Yt8DdLiGgD19iEkci7cgxEG6UCx9TVmI79AYLL9/UOwEVhlNwrRo1HS/q8q8jccyiR6lCMqpm/xzOlmM9RAVfSoOwwZqLDd9ije0t1vq4QlrcBQVhG9PLtDQseyCMjEsnb6bR+MGR7WAW9zS1w==
# -*- 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
bin_name = glob.glob("AtelierScientifiqueEleveSvt_FR_*.msi")[0]
# Installing the software
install_msi_if_needed(bin_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
import zipfile
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
url_base = "https://jeulin.com/jeulin_fr/ress-256058.html"
response = requests.get(url_base,allow_redirects=True, proxies=proxies)
# Extract the correct div using bs_find_all
divs = bs_find_all(response.text, "div", proxies=proxies)
zip_file = None
for div in divs:
if zip_file:
break
links = div.find_all('a', href=True)
for link in links:
if link['href'].endswith('.zip'):
href = link['href']
zip_file = href
download_url = zip_file
latest_bin = zip_file.split('/')[-1]
# Utiliser une expression régulière pour extraire la version
match = re.search(r'v(\d+)_(\d+)_(\d+)', latest_bin)
if match:
version = f"{match.group(1)}.{match.group(2)}.{match.group(3)}"
print("Version:", version)
else:
print("Version non trouvée")
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)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Extracting the .exe file from the .zip archive
with zipfile.ZipFile(latest_bin, "r") as zip_ref:
zip_ref.extractall()
msi_file = None
for file in zip_ref.namelist():
if file.endswith(".msi"):
msi_file = file
print(f"Extracted {msi_file}")
break
version = get_version_from_binary(msi_file)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
fafc36a96f5156ab775df6af7fd7ed44bab0fca6c41f09b6b227767c6ceea367 : AtelierScientifiqueEleveSvt_FR_8_1_7.msi
5c5a8c47d06455e6961fd0b27708065c161ce2e7d9ad2a41dae124b416bb198b : Ressource_Jeulin_Atelier_scientifique_Eleve_SVT_FR_v8_1_7_3068.zip
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
318cca7902c76bbe8449ea6cbd55cf93a9187c0f4e9aaab4c56c66e956065b77 : WAPT/control
dc46e83040a5f1ae4e8f7f846b012b1590847e532f84b08f1149e1863dc63ef5 : WAPT/icon.png
f9c0bf12af86f7f80652586b9cc15076b74c9a8120faa23127dbcb25d04d957d : luti.json
b6b7cb9c0cccbf845c21751c6867423bd1f649dd0493c06c0463b5a0b3844e2c : setup.py
59f840812d719bc6c0a1b9a92f36c2b94af80646afd5e1e909acc725fe3311b3 : update_package.py