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
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -215,25 +215,25 @@ Please see the [supported versions](https://github.com/DomainTools/python_api/ra
215
215
for the DomainTools Python support policy.
216
216
217
217
218
-
Real-Time Threat Intelligence Feeds
218
+
Real-Time Threat Feeds
219
219
===================
220
220
221
-
Real-Time Threat Intelligence Feeds provide data on the different stages of the domain lifecycle: from first-observed in the wild, to newly re-activated after a period of quiet. Access current feed data in real-time or retrieve historical feed data through separate APIs.
221
+
Real-Time Threat Feeds provide data on the different stages of the domain lifecycle: from first-observed in the wild, to newly re-activated after a period of quiet. Access current feed data in real-time or retrieve historical feed data through separate APIs.
222
222
223
223
Custom parameters aside from the common `GET` Request parameters:
224
224
-`endpoint` (choose either `download` or `feed` API endpoint - default is `feed`)
225
225
```python
226
-
api = API(USERNAME, KEY, always_sign_api_key=False)
226
+
api = API(USERNAME, KEY)
227
227
api.nod(endpoint="feed", **kwargs)
228
228
```
229
229
-`header_authentication`: by default, we're using API Header Authentication. Set this False if you want to use API Key and Secret Authentication. Apparently, you can't use API Header Authentication for`download` endpoints so this will be defaulted to `False` even without explicitly setting it.
230
230
```python
231
-
api = API(USERNAME, KEY, always_sign_api_key=False)
232
-
api.nod(header_authentication=False, **kwargs)
231
+
api = API(USERNAME, KEY, header_authentication=False)
232
+
api.nod(**kwargs)
233
233
```
234
234
-`output_format`: (choose either `csv`or`jsonl`- default is`jsonl`). Cannot be used in`domainrdap` feeds. Additionally, `csv`isnot available for`download` endpoints.
235
235
```python
236
-
api = API(USERNAME, KEY, always_sign_api_key=False)
236
+
api = API(USERNAME, KEY)
237
237
api.nod(output_format="csv", **kwargs)
238
238
```
239
239
@@ -254,7 +254,7 @@ Since we may dealing with large feeds datasets, the python wrapper uses `generat
254
254
```python
255
255
from domaintools importAPI
256
256
257
-
api = API(USERNAME, KEY, always_sign_api_key=False)
0 commit comments