Skip to content

Releases: imneonizer/imthread

v1.1

Choose a tag to compare

@imneonizer imneonizer released this 16 Nov 10:26
92feabb

Decorators support added.

imthread v1.0

Choose a tag to compare

@imneonizer imneonizer released this 12 Oct 15:53
7905fbe

quick launch mode added
standard way of measuring time elapsed added

imthread v0.2.2

Choose a tag to compare

@imneonizer imneonizer released this 10 Sep 09:39
907be13

now we can run our program with single thread batches aswell,
this can give a better idea to estimate time complexity of the code when running on single thread.

imthread v0.2.1

Choose a tag to compare

@imneonizer imneonizer released this 01 Sep 12:01
b086296

added imthread.stop() function to kill all active threads in case you wanted to

imthread v0.2.0

Choose a tag to compare

@imneonizer imneonizer released this 01 Sep 08:25
bde7c1a
  • max_threads parameter added so now you can decide how many threads it can create at once in case there are large number of inputs it won't eat up all of your resources.
  • An optional console log(output=True) function is added to see thread creations in real time.
  • some bugs are fixed

imthread

Choose a tag to compare

@imneonizer imneonizer released this 08 Aug 11:04
d44c8b1

This is the first release of imthread, a python library dedicated to running any function on multiple threading for fast processing of your data.
you can install it with, "pip install imthread".