Metadata-Version: 1.1
Name: JSutils
Version: 0.2
Summary: Simple to use looping mechanism to emulate the setInterval function in JavaScript
Home-page: http://github.com/jaimeloeuf
Author: Jaime Loeuf
Author-email: jaimeloeuf@gmail.com
License: MIT
Description: Package name: JSutils
        
        Author: Jaime Loeuf
        
        License: MIT
        
        Package Desciption:
        
        - This package contains classes/functions that implements functions like the setInterval function from JavaScript.
        - Currently this package contains the
            1) 'setInterval' class
        
        To call a function over and over again with a fixed interval:
            >>> from JSutils import setInterval
        	>>>
        	>>> def HelloWorld(message):
        	>>>		print('Hello world')
        	>>>		print(message) # Print out / use the arguement.
        	>>>
        	>>>	setInterval(5, HelloWorld)
Keywords: setInterval loop interval
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Utilities
