From 8c07e6f7f2622ce4d4a4dec2b4d75bceae9ae657 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Mon, 26 Aug 2024 18:43:38 -0400 Subject: [PATCH] python/file_formats: Remove reference to DAW JSON Link, which has no Python bindings anyway --- docs/python/file_formats.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/python/file_formats.rst b/docs/python/file_formats.rst index ac45d1f..a75e864 100644 --- a/docs/python/file_formats.rst +++ b/docs/python/file_formats.rst @@ -22,7 +22,7 @@ For critical paths involving *small files*, use `orjson `__. For JSON documents with known structures, `JSON Link `__ is fastest, but the files relevant to us have unknown structures. + We can switch to the `Python bindings for simdjson `__. For *large files*, use the `same techniques `__ as OCDS Kit to stream input using `ijson `__, stream output using `iterencode `__, and postpone evaluation using iterators. See its `brief tutorial `__ on streaming and reuse its `default method `__.