jsonapi-client icon indicating copy to clipboard operation
jsonapi-client copied to clipboard

JSON API (jsonapi.org) client for Python

Results 21 jsonapi-client issues
Sort by recently updated
recently updated
newest added

I'm not sure how welcome this is, but we've added a dict-like get method to our codebase so that we can perform typical dictionary checking for keys, e.g.: time =...

It would be helpful to be able to be able to access/print out the raw json that is returned from the API when making network calls. Did I just miss...

I installed package from PyPi and there is no Modifier class in filter.py Must be something went wrong while packaging sources.

After creating a new document, my server responds with a "202 Accepted" response, and I get the following backtrace: ``` Traceback (most recent call last): File "/export1/code/shield/jsonapi-client/src/jsonapi_client/resourceobject.py", line 598, in...

It is not very clear how to server large numbers of related objects as is obvious they cannot be loaded explicitely in relation https://github.com/json-api/json-api/issues/1120 One way I thouht was to...

I don't understand the the reason for the 'jsonify_attribute_name' and 'dejsonify_attribute_name' function. For example in our API we have meta data like this: 'meta': {'sp_version': '8.3', 'api': 'SP', 'api_version': '3',...

There can be a possibility that related resources might have different links, like if A has a relation B. ```json A { "data": { ... "relationships": { "B": {"data": {...},...

``` from settings import Settings from jsonapi_client import Session, Filter, ResourceTuple, Modifier, Inclusion headers = {'headers': { 'Accept': 'application/vnd.api+json', 'Authorization': f"Bearer {Settings().access_token}"}} async with Session(server_url="https://api.example.com/", request_kwargs=headers, enable_async=True) as s: querystring...