python_api icon indicating copy to clipboard operation
python_api copied to clipboard

Please see https://github.com/marklogic/marklogic-python-client for the official MarkLogic Python client.

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

The requests library is a dependency. To fix run: `pip3 install requests`

I've been remiss, apparently, in making PRs back to master. This is an attempt to rectify that oversight. This is all the changes through 0.0.17 plus a few small things...

I don't know where to put announcements for significant upcoming changes. This is still "unreleased" software so I don't feel any particular constraints to maintain backwards compatibility. On the other...

Looking at examples/create_forest.py The tons of set_xxx() methods are completely superfluous and unpythonic. Why don't you just use create.some_property = value directly instead of usinger setter methods? Python is not...

The whole codebase contains tons of ``` return self ``` lines. This is completely unpythonic and they do not make any sense. Just omit the 'return' statement completely..

You can not perform the standard 'develop' set: ``` Suxmac-2:python_api ajung$ bin/python setup.py develop Traceback (most recent call last): File "setup.py", line 5, in import marklogic File "/Users/ajung/src/python_api/marklogic/__init__.py", line 22,...

My customer needs to deploy code to a modules database via an appserver that is SSL-enabled. Since MLCP does not work with SSL, we can use the REST /documents endpoints...

I created a test for this extension. Since the test requires an SSL-enabled app server, I created the test in a separate directory with it's own resources file. It's a...

The Connection class permits the user to perform a PUT request, possibly including data. However, I have found that this method is not convenient for uploading files. Particularly non-json files....