We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cae89ce commit 5254e00Copy full SHA for 5254e00
domaintools/results.py
@@ -3,7 +3,6 @@
3
Additionally, defines any custom result objects that may be used to enable more Pythonic interaction with endpoints.
4
"""
5
6
-import json
7
import logging
8
import httpx
9
import time
@@ -15,7 +14,6 @@
15
14
16
from itertools import zip_longest, chain
17
from typing import Generator
18
-from httpx import Client
19
20
from domaintools_async import AsyncResults as Results
21
@@ -210,7 +208,7 @@ class FeedsResults(Results):
210
208
211
209
Highlevel process:
212
213
- httpx stream -> yield each json line -> check status code -> yield back data to client
+ httpx stream -> check status code -> yield back data to client -> repeat if 206
214
215
Returns the generator object for feeds results.
216
0 commit comments