Metadata-Version: 2.1
Name: aiomultithreading
Version: 0.1.0
Summary: AsyncIO, threading and multiprocessing combined to created a powerful executor
Author: Vizonex
Keywords: aiomultithreading,multiprocessing,threading,asyncio
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires: aiothreading
Requires: aiomultiprocess
Description-Content-Type: text/markdown
License-File: LICENSE

# Aiomultithreading

A concept for creating the Best Possible Utilization of threading, multiprocessing and asyncio combined into one
executor allowing the number of tasks running in parallel to be multiplied rapidly without 
having to do very many setups. 


Aiomultithreading is meant for handling super bulky tasks such as proxy-enumeration or networking
on a very large scale. This can be costly for some uneducated programmers but luckily 
this tool completely changes that by making use of not just your threads, cores or
task counts alone, No, All of them combined. This library completely changes the playing-field 
and I expect to see a few people using this for something really intense. 


With the combined help of aiomultiprocessing and aiothreading it is possible to acheieve the 
maximum amount of tasks that can be quickly ran in parallel. 

Even the default tasks per child with threading and cores will surprise you.

Even with the use of a low cpu machine when doing the math (2 processes * 4 threads * 16 tasks per thread) 
it makes a total of 128 tasks. Theses numbers can rapidly multiply when being used pc or device using a higher 
cpu count. 



## FYI
- If your goals involved some form of brute-forcing that's offline, please note that Asyncio is not the best canidate for this.
Use hashcat if your trying to grind those kinds of things out.


