Skip to content

rckclmbr/streaming_multipart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A streaming multipart parser.

Usage:

from streaming_multipart import MultipartReader

reader = MultiPartReader(stream, boundary)
part1 = reader.next_part()
print part1.form_name()
print part1.read(1024)  # Read 1024 bytes from part stream
part2 = reader.next_part()
print part2.read()  # Read all data

About

A streaming multipart parser written for python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published