(url, fs_config=None, config=None)
| 89 | |
| 90 | |
| 91 | def parse_external_url(url, fs_config=None, config=None): |
| 92 | remote_config = dict(fs_config) if fs_config else {} |
| 93 | remote_config["url"] = url |
| 94 | fs_cls, resolved_fs_config, fs_path = get_cloud_fs(config, **remote_config) |
| 95 | fs = fs_cls(**resolved_fs_config) |
| 96 | return fs, fs_path |
| 97 | |
| 98 | |
| 99 | def get_fs_config(config, **kwargs): |