s3fs custom endpoint url
问题 How do I pass a custom endpoint url to s3fs.S3FileSystem ? I've tried: kwargs = {'endpoint_url':"https://s3.wasabisys.com", 'region_name':'us-east-1'} self.client = s3fs.S3FileSystem(key=AWS_ACCESS_KEY_ID, secret=AWS_SECRET_ACCESS_KEY, use_ssl=True, **kwargs) However I get the error: File "s3fs/core.py", line 215, in connect **self.kwargs) TypeError: __init__() got an unexpected keyword argument 'endpoint_url' I've also tried passing kwargs as the parameter config_kwargs and s3_additional