You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because the ZipfileDecoder will decompress data from the requests.Response object, it needs a component/class to parse the decompressed data that is not passed to it as a requests.Response object (like the JsonDecoder class).
Proposed Solution
Implement a Parser interface that has one primary method: parse
Implement a JsonParser class
The text was updated successfully, but these errors were encountered:
Problem
ZipfileDecoder
will decompress data from therequests.Response
object, it needs a component/class to parse the decompressed data that is not passed to it as arequests.Response
object (like theJsonDecoder
class).Proposed Solution
Parser
interface that has one primary method:parse
JsonParser
classThe text was updated successfully, but these errors were encountered: