Skip to content

Utilities package for python programs, with utils similar to those found in JavaScript like the setInterval function

License

Notifications You must be signed in to change notification settings

Jaimeloeuf/JSutils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Package name: JSutils

  • Author: Jaime Loeuf
  • License: MIT
  • Package Desciption:
    • This package contains classes/functions that implements functions like the setInterval function from JavaScript.
    • This package currently does not have any external dependencies, written only with py std. lib
    • 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)

About

Utilities package for python programs, with utils similar to those found in JavaScript like the setInterval function

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages