B
B
bobs322018-11-03 00:47:13
Python
bobs32, 2018-11-03 00:47:13

How to parse r.text?

The Requests library is used.
r = session.post(url, data=payload, headers=headers)
print(r)
print(r.text)
When sending a POST request, the response is returned as {"result": [n]}.
n - operation id.
How to get the id from the response and make a new url like www.primer.com/n

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Stanislav Nekrasov, 2018-11-03
@bobs32

import json
import random

server_answer = '{"result": [' + str(random.randint(0, 100)) + ']}'

n = json.loads(server_answer)["result"][0]
new_url = f"www.primer.com/{n}"

print(new_url)

server_answeris a variable with the server's response.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question