doltpy icon indicating copy to clipboard operation
doltpy copied to clipboard

A Python API for Dolt

Results 30 doltpy issues
Sort by recently updated
recently updated
newest added

It may make sense to make the most of deps optional.

question

This is a feature request. Currently, `read_pandas` and `read_pandas_sql` use SQL->CSV->Pandas conversion [behind the scenes](https://github.com/dolthub/doltpy/blob/f3c83cc7f686d0e65f35c9fc32dc567519a862c3/doltpy/cli/read.py#L20). It would be great if the resulting DataFrame could inherit some info from the SQL...

Tentatively closes #181. This is mostly to see if removing it breaks any existing tests (and if not, if it should be breaking any tests). I'm not sure this is...

``` $ dolt status On branch test_data_types Untracked files: (use "dolt add " to include in what will be committed) new table: mytable ``` ```python with DoltSQLServerContext(dolt, ServerConfig(user="root", password="")) as...

On installing doltpy: ```opencv-python 4.5.5.62 requires numpy>=1.19.3; python_version >= "3.9", but you have numpy 1.19.0 which is incompatible.``` Can the version be bumped?

This is a feature request for adding `as_of` parameter to `read_pandas_sql`. This parameter is available in `read_pandas` for reading the whole table, but it would be nice to have the...

`dolt` cli client can add remotes with gcspath or local paths as well but doltpy does not support gcs paths ``` File "/usr/local/lib/python3.8/dist-packages/doltcli/dolt.py", line 274, in __init__ python-BaseException raise ValueError(f"{self.repo_dir}...

The `packaging` library is fixed to `20.4` which creates a problem when trying to freeze dependencies: ``` There are incompatible versions in the resolved dependencies: packaging==20.4 (from doltpy==2.0.9->-r requirements.train.in (line...

need option to disable it or put it in /tmp directory or be able to specify the location for 'temp_log' file when running sql-server. [issue created in dolt](https://github.com/dolthub/dolt/issues/2536)

enhancement

For a table defined like this: ```sql CREATE TABLE test ( id integer NOT NULL, json_id json DEFAULT '{}' NOT NULL ) ``` Inserting into this table with `write_rows` fails...