Let me take a very small example of what I am looking for.
def add_two_numbers(x, y): return x + y
I want to input n number of times, the random values for x and y.
Is there any python fuzzing library that I can use for generating such values (integers, strings, alphanumeric, etc.)
If you guys can suggest a few python libraries that can be used for to generate random data (fuzzing).