I want to store data for later use in the locust, for example
response = self.client.post('/' "username:'xx', password:"xx")
self.client.data1 = response.content['data1']
self.client.data1 can be used in the next request, but when simulate more, the self.client.data1 get lost. Is there a better way to store data for later use?