Sample code for 30+ languages & platforms
CkPython

Clear All Multipart Parts

See more REST Examples

Demonstrates Rest.ClearAllParts, which removes all multipart subparts from the request under construction.

Background. Clearing the parts is useful when reusing the same Rest object to build a different multipart request.

Chilkat CkPython Downloads

CkPython
import sys
import chilkat

success = False

rest = chilkat.CkRest()
bTls = True
bAutoReconnect = True
success = rest.Connect("example.com",443,bTls,bAutoReconnect)
if (success == False):
    print(rest.lastErrorText())
    sys.exit()

#  Build a part.
rest.put_PartSelector("1")
success = rest.SetMultipartBodyString("value1")
if (success == False):
    print(rest.lastErrorText())
    sys.exit()

#  Remove all multipart subparts from the request under construction, for example before reusing the
#  same Rest object for a different multipart request.
rest.ClearAllParts()

print("All multipart parts cleared.")