Cool Utils
Release 1.3.2 (The All Around Update!)
Documentation
Ce sont des outils utilitaires sympas que vous pouvez utiliser dans Python. Il existe quelques outils que vous pourriez trouver très utiles, vous pouvez l'utiliser sur à peu près n'importe quel projet et certains utils pourraient vous aider beaucoup et gagner autant de temps car c'est une fonction simple. Nous espérons que vous aimez nos utils. Passe une bonne journée!
Installation de PYPI
Windows:
$ pip install -U cool-utilsLinux / macOS:
$ python3 -m pip install -U cool-utilsInstallation de développement
Windows:
$ pip install git+https://github.com/Senarc-Studios/Cool-UtilsLinux / macOS:
$ python3 -m pip install -U git+https://github.com/Senarc-Studios/Cool-UtilsCompiler:
from cool_utils import Compile
strings = [ "This" , "Is" , "A" , "String" ]
num_list = [ 9 , 4 , 2 ]
print ( Compile . string ( strings , startswith = "Hey, " , endswith = "." , joints = " " ))
print ( Compile . numbers ( num_list , startswith = 6 , endswith = 0 ))
>> Hey , This Is A String .
> > 69420JSON:
import cool_utils
json = cool_utils . JSON . open ( "sample" )
json . register_value ( variable = "foo" , value = "bar" ) # This creates a JSON file.
data = json . get_data ( variable = "foo" )
invalid_data = json . get_data ( "non-existant value" ) # You can do this instead of doing the variable's name.
print ( data )
print ( invalid_data )
>> bar
>> NoneGlobalJSON:
import cool_utils
cool_utils . GlobalJSON . open ( "sample" )
cool_utils . GlobalJSON . register_value ( variable = "foo" , value = "bar" )
data = cool_utils . GlobalJSON . get_data ( variable = "foo" )
invalid_data = cool_utils . GlobalJSON . get_data ( "non-existant value" )
print ( data )
print ( invalid_data )
>> bar
>> None Cela ne serait pas rendu possible sans ces gens