tis-pycharm
2019.3.1-1
PyCharm is an integrated development environment (IDE) used in computer programming, specifically for the Python language
705 downloads

Description
- package : tis-pycharm
- version : 2019.3.1-1
- architecture : x64
- categories : Development
- maintainer : WAPT Team,Jimmy PELÉ
- description : PyCharm is an integrated development environment (IDE) used in computer programming, specifically for the Python language
- locale :
- target_os : windows
- min_wapt_version : 1.5
- sources : https://www.jetbrains.com/pycharm/download/#section=windows
- installed_size : 697249792
- impacted_process : pycharm64.exe,pycharm.exe
- description_fr : PyCharm est un environnement de développement intégré utilisé pour programmer en Python
- description_pl :
- description_de :
- description_es :
- description_pt :
- description_it :
- description_nl :
- description_ru :
- editor : JetBrains
- licence : Freemium
- signature_date : 2020-02-27T21:39:54.881728
- Homepage : https://www.jetbrains.com/pycharm/
Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallkey = []
# Declaring specific app values (TO CHANGE)
bin_name_string = 'pycharm-community-%s.exe'
silent_args = '/S /CONFIG=silent.conf'
app_uninstallkey_string = 'PyCharm Community Edition %s'
def install():
# Specific app values
package_version = control.version.split('-',1)[0]
# Getting the used storage on programfiles before installation (place it on the top)
get_disk_free_space_before = get_disk_free_space(programfiles)
# Installing the package
install_exe_if_needed(bin_name_string % package_version
,silentflags=silent_args
,key=app_uninstallkey_string % package_version
,min_version='193.5662.61'
,accept_returncodes=[0,3010,1223]
,timeout=2000)
# Return used storage of the program. (place it on the bottom)
get_disk_free_space_after = get_disk_free_space(programfiles)
free_space_after_diff = get_disk_free_space_before - get_disk_free_space_after
print("Storage used: " + str(free_space_after_diff))
def update_package():
pass