【求助】用swagger的codegen生成的客户端如何提交带有cookies的请求

用swagger的codegen生成了测试的客户端,使用的示例代码如下:

from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.APIApi(swagger_client.ApiClient(configuration))
param = swagger_client.GroupCreateParam() # GroupCreateParam | param

try:
    # 创建群组
    api_response = api_instance.apply_using_post(param)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling APIApi->apply_using_post: %s\\n" % e)

对一般的请求用这种逻辑调用,是没有问题的,但是现实中,大多需要有登录的cookies信息,请指教:如果想加header,cookies这些信息什么的如何添加啊?