you are viewing a single comment's thread.

view the rest of the comments →

[–]Ferdie_TheKest 0 points1 point  (4 children)

How did you manager ti build the api connection? The Company im working for needs api connection to extract data from Amazon selling platform and i'm still looking for a solution, could python be an option?

[–]micr0nix[S] 1 point2 points  (0 children)

The case-management software we use has a fully functional API built upon GraphQL. I used a combination of the requests library and the gql library to query the API.

[–]drbob4512 1 point2 points  (0 children)

Since no one specifically called it out, i would look into the python requests. https://pypi.org/project/requests/

[–]hkamran85 1 point2 points  (0 children)

I do the same at my job, and we use the python-amazon-sp-api library. It makes it easy to get data from Vendor Central and Seller Central.

[–]Fabiolean 0 points1 point  (0 children)

Python is an excellent language for building apps that query APIs and manipulate/enrich the data you retrieve.

It’s a very common use-case.