Thomas Kastl
Thomas Kastl
Pandas now uses an experimental NA declarator by default: `pandas.NA` of type `pandas._libs.missing.NAType`. [More details here. ](pandas._libs.missing.NAType) **Currently, dash_table throws an "Error loading layout" during runtime whenever it encounters a...
I am using the Databricks CLI programmatically, behind a corporate proxy. Since the CLI is based upon the `requests` module, I am guessing (not sure?) that I can set a...
fsspec seems to have an option to manually enable asynchronous processing, and adlfs also has this option, set to False by default: https://github.com/fsspec/adlfs/blob/695e8f18d13b2c1219738f833b170f53bd84049e/adlfs/spec.py#L409 However, it looks like adlfs is just...
```python from fsspec.implementations.local import LocalFileSystem fs = LocalFileSystem() fs.ls("C:/") ``` This lists the content of os.getcwd() instead of C:/. The same for similar commands like ``` fs.ls("file://C:/") ``` pretty sure...
Some functions crash when trying to use `pathlib.Path`-like syntax. Is this intentional (e.g. s3fs does not intend to support `pathlib.Path`, only `str`, or is this a bug? [`pathlib`](https://docs.python.org/3/library/pathlib.html) is for...
The scope for Databricks access described here seems to be no longer valid: "error_description": "AADSTS1002012: The provided value for scope 2ff814a6-3304-4ab8-85cb-cd0e6f879c1d%2F.default is not valid. --- #### Document Details ⚠ *Do...
The following functionality seems to be missing from the jobs API: https://docs.databricks.com/dev-tools/api/latest/jobs.html#operation/JobsUpdate Any reason why this is not implemented?
### Context For outgoing links, it feels sometimes more intuitive to open a link in a new tab / page instead of the current one. This is for example when...
This PR improves the error handling logic for `s3fs.S3FileSystem.exists()` and fixes #750 First change is that there is no longer a generic `except Exception` block, meaning that e.g. `ConnectionError` now...
Short version: When calling `exists("/path/to/file")` on an `s3fs.S3FileSystem` with wrong credentials, instead of throwing an error that the credentials are wrong, it instead responds with False. This is misleading, since...