Basic calculator to test my knowledge of python

Calculadora bĂĄsica pra testar meus conhecimentos sobre python OlĂĄ! Pra melhor experiĂȘncia, rode a script no seu terminal. Instalação, Clonagem e Acesso $ pkg upgrade $ pkg update $ pkg install git $ pkg install python $ git clone https://github.com/yScottLuc/CalcuPython $ cd CalcuPython $ python3 CalcuPython.py GitHub View Github    

Read more

A python wrapper for the PESQ score calculation C routine

Pypesq is a python wrapper for the PESQ score calculation C routine. It only can be used in evaluation purpose. INSTALL pip install https://github.com/vBaiCai/python-pesq/archive/master.zip or pip install pypesq HOW TO USE import soundfile as sf from pypesq import pesq ref, sr = sf.read(…) deg, sr = sf.read(…) score = pesq(ref, deg, sr) print(score) OWNERS of PESQ ARE: British Telecommunications plc (BT), all rights assigned to Psytechnics Limited Royal KPN NV, all rights assigned to OPTICOM GmbH More test. I’m not […]

Read more

A tool to calculate a resulting color of the alpha blending process

This is a tool to calculate a resulting color of the alpha blending process. A gamma correction is enabled and the default transfer function is the one defined in sRGB. Usage Just enumerate colors from the bottom to the top. Let’s blend 75% black on pure white blec white black:0.75 blec fff 000000bf blec ffffffff [0,0,0,191] blec ffffff:1 [0,0,0]:0.75 Every call above does the same thing Installation pip3 install blec GitHub GitHub – igrmk/blec: Alpha blending calculator Alpha blending calculator. […]

Read more

Hydrogen (or other pure gas phase species) depressurization calculations

HydDown Hydrogen (or other pure gas phase species) depressurization calculations This code is published under an MIT license. Run the code as simple as: python main.py input.yml where main.py is the main script and input.yml is the input file in Yaml syntax. Consult the manual for a more rigorous explanation of the software, the implemented methods, and its usage. Further, the manual also contains a few validation studies. Demonstration The easiest way to explore the capability of HydDown is the […]

Read more

A Simple Calculator made with kivy framework in python

Kivy Calculator A Simple Calculator made with kivy framework.Works on all platforms from Windows/linux to android. Simple kivy project to help new kivy users build android apps with python. Getting Started Dependencies Python, kivy and buildozer. Installing pip install kivy pip install buildozer Executing program After installing all the necessary modules. open project directory in your IDE and run main.py or from your terminal and type: cd /../../project_files python3 main.py Packaging Your App for Android Create a new folder and […]

Read more
1 2