About 680,000 results
Open links in new tab
  1. rest - Making a request to a RESTful API using Python - Stack …

    Assuming the API returns a JSON, parse the JSON object into a Python dict using json.loads function Loop through the dict to extract information. Requests module provides you useful …

  2. How to access a sharepoint site via the REST API in Python?

    Jan 6, 2014 · When I access this from the browser, it prompts me for the username and password and then works fine. However I am trying to do the same using the REST API in Python. I am …

  3. How to make a simple Python REST server and client?

    Mar 5, 2020 · I'm attempting to make the simplest possible REST API server and client, with both the server and client being written in Python and running on the same computer. From this …

  4. Python, HTTPS GET with basic authentication - Stack Overflow

    Aug 9, 2011 · In Python 3 the following will work. I am using the lower level http.client from the standard library. Also check out section 2 of rfc2617 for details of basic authorization.

  5. Asynchronous Requests with Python requests - Stack Overflow

    Feb 2, 2012 · One such solution is aiohttp (Python 3.5.3+). It works well in my experience using it with the Python 3.7 async/await syntax. Below I write three implementations of performing n …

  6. Python request with authentication (access_token)

    Dec 12, 2012 · I am trying to use an API query in Python. From the command line I can use curl like so: curl --header "Authorization:access_token myToken" …

  7. How do I read a response from Python Requests? - Stack Overflow

    I have two Python scripts. One uses the Urllib2 library and one uses the Requests library. I have found Requests easier to implement, but I can't find an equivalent for urlib2's read() function. For

  8. rest - Python POST binary data - Stack Overflow

    Jan 17, 2013 · Basically what you do is correct. Looking at redmine docs you linked to, it seems that suffix after the dot in the url denotes type of posted data (.json for JSON, .xml for XML), …

  9. python - Netsuite REST Web Services API GET Request, Outside of …

    Oct 1, 2020 · What: Attempting to make a GET request using Netsuite's brand new REST API (REST Web Services). This is a different API than their SOAP/ RESTlets. How: Through …

  10. How to do a HTTP DELETE request with Requests library

    I'm using the requests package for interacting with the toggl.com API. ... in python. 4. HTTP delete ...

Refresh