I'm developing a small python (flask) web project for self-learning and came across something I've never faced before.
I have a registration form where the fields of an information are dynamic, ie via jquery I can create and delete fields because I do not know how many links the user will send. My question is as follows, how do I get the request of this form in my python code if I do not know how many fields will be sent? Is there any sort of list in the request where I can create 'objects' to send everything together?