Albert Cui

Results 14 issues of Albert Cui

* Fix Wikipedia test * Fix Wikipedia test

### Issue description When querying numbers with decimal places as strings, the resulting string representation always has 6 decimal places. This seems to affect both `NUMBER` and `FLOAT` types. ###...

An example usage: ``` --- cell -- def pl_body(): open("/pfs/big", "r") as f: # do stuff with f run_like_a_pipeline( datums=["big:/", "config:/cfgfile1.txt"], code=pl_body) --- output --- output is in '/data/a1b2c3' ---cell...

Mount a PFS repo locally, and be able to read/write data via the file system.

As a user, I would like to mount a pachyderm repo to the local, and read/write data via the filesystem.

Currently `client.delete_all` only calls `PPS.delete_all`. https://github.com/pachyderm/pachyderm/blob/master/src/client/client.go#L677

Currently proto_lint checks for RPC methods that are missing in the Python mixins. However, it does not check the other way around, which are outdated RPCs that are still being...

Core Pachyderm v2 is dropping support for Build Pipelines. The part that uses Build Pipelines is https://github.com/pachyderm/python-pachyderm/blob/fd74d6ea043bdc9384ba71133824ad360a276445/src/python_pachyderm/util.py#L72

v7

We want python-pachyderm to support both `v2.x` and `v1.x` of mainline pachyderm, and in general, we want to support one backward version in addition to the most current version of...

Some of our client methods accept various types for inputs, for example in `get_file(commit, path, URL)`, the `commit` can be a tuple, string, or `Commit` object. While we do some...

enhancement