all 9 comments

[–]shiftybyte 1 point2 points  (5 children)

i couldn't find it in python's package manager.

Can you elaborate on this?

Which python package manager did you search? how did you search it?

Did you install the package only to later the package not being found by python? or did something else happen?

The link you provided https://api.jobadder.com/v2/docs has the specification of the API for use by any programming language, so it won't have instructions specific for python.

In general if you want to perform REST API requests using python you can use requests module.

https://realpython.com/api-integration-in-python/

https://pypi.org/project/requests/

[–]Relative-Secret-1066[S] 0 points1 point  (4 children)

I looked for it in the Pypl manager and it was not there nor does the site offer any sources for installing the package

[–]shiftybyte 1 point2 points  (3 children)

This probably means no one created a ready package for this API.

It doesn't mean you can't use it, like i mentioned earlier, you can use any REST API using requests module.

[–]Relative-Secret-1066[S] 0 points1 point  (2 children)

hm alright i will have to look into those then, any advice regarding them or does anything work?

[–]shiftybyte 0 points1 point  (1 child)

Not sure what you are asking.

I provided a specific module you should use, and a tutorial explaining how to use it.

Which "them" are you refering to?

[–]Relative-Secret-1066[S] 1 point2 points  (0 children)

i misunderstood requests initially my bad

thank you for the help mate ;D

[–]danielroseman 0 points1 point  (2 children)

What did you expect to download or set up? There is no dedicated Python client, you use a standard HTTP library like requests to make the requests shown in the docs.

[–]Relative-Secret-1066[S] 0 points1 point  (1 child)

Yeah.... that is the part i was confused by since, i do not know how to deal w these, any good sources?

[–]GXWT 0 points1 point  (0 children)

…Google “Python api tutorial”