Shay Palachy-Affek
Shay Palachy-Affek
In addition to configuring the cache file path for each wrapped function, a way to globally change the location of the general cache directory for all `cachier` caches is required....
For me, the most probable use case in the near future is an an S3-backed persistent cache.
To create the key for a cache entry, the current implementation uses the following expression: ``` key = args + tuple(sorted(kwds.items())) ``` For a function with signature `spam(*args, **kwargs)`, this...
See the [XDG Base directory specification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) Sounds like `$XDG_CACHE_HOME/cachier` should be used if the `XDG_CACHE_HOME` environment variable is defined. By the way, this is a good first issue for any...
@shaoyucheng used cachier directly in his business code, and found it was not working. He then set up some test code to verify, and it worked well as expected. He...
I want a way to supply pipeline stage constructor parameters with future-like placeholders, so that actual values will be determined by prior stages on application time. I would assign the...
I want a way to supply pipeline stage constructor parameters with future-like placeholders, so that actual values will be determined by prior stages on application time. I would assign the...
I want to be able to push multiple dataframes into a pipeline and get a single ones. Individual pipelines are connected by joins, concats, etc.
On [the project's docsite](https://pdpipe.readthedocs.io/en/latest/), class docstring examples are not presented correctly. I'm pretty sure this is the last inheritance from `pydoc3`, the way the doc site was compiled before, which...
### Discussed in https://github.com/pdpipe/pdpipe/discussions/97 Originally posted by **Dranikf** March 14, 2022 Will start with example. I create `test.py` file in some dir, it may looks like this: ``` from sys...