Shotgun API wrapper for query fields

Hey all, I had the need for other projects to be able to retrieve query fields from the API, and this is not possible with the current API.

So I did a wrapper, which is thread safe, so it makes all the query fields retrieval for each Entity in parallel.

PyPi page: https://pypi.org/project/fpt-api
Github page: GitHub - ksallee/fpt-api: A wrapper around shotgun_api3 to allow retrieval of query fields/calculated fields

If you test it and like it, please leave a star on Github.
If you want to contribute, please send me a message or make a pull request/issue on Github!

2 Likes

Hey Kevin,

there is also this repo that does something similar.

Yeah, I think I had seen it, but maybe it was another one?

But it doesn’t fix the thread safe pb of shotgun API so I don’t think it’s as fast as mine.

1 Like

I added yield_page_entities method to allow to fetch entities from a SG page by applying the same filters as the SG page :slight_smile:

1 Like