'Bulk insert in PingDirectotry
I am trying to create and update bulk records in PingDirectory using REST is there any way we can achieve bulk update and insert. Single insertion is working fine using POST request with Postman
https://directory.*.com/directory/v1/
TIA
Solution 1:[1]
This code example you posted appears to do exactly what you were asking. I would maybe try and save your file with the code you had provided to us, close your IDE, reopen and run the code again.
Extra add: If you were wanting to add actual text labels, I have an example of that below.
window = Tk()
window.geometry("420x420")
window.title("Hello, World!")
label = Label(window, text="This is some text!", width="250", justify="center").place(x=200, y=200, width="100", anchor="center")
window.config(bg='red')
window.mainloop()
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | BMarshyyy |
