From e5a90edf399f14d9efe02b6ab3016381c852a937 Mon Sep 17 00:00:00 2001 From: mattkeanny <72376184+mattkeanny@users.noreply.github.com> Date: Fri, 26 Jan 2024 18:45:30 +0100 Subject: [PATCH] Update README.md Removed input format 'original' from example comment. Acc. to the OPS guide, section 2.1.2, the 'original' format is used only by the OPS number-service (section 3.3) hence only confusing in combination with the published_data() method. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1dffe4a..34eb673 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ import epo_ops client = epo_ops.Client(key='abc', secret='xyz') # Instantiate client response = client.published_data( # Retrieve bibliography data reference_type = 'publication', # publication, application, priority - input = epo_ops.models.Docdb('1000000', 'EP', 'A1'), # original, docdb, epodoc + input = epo_ops.models.Docdb('1000000', 'EP', 'A1'), # docdb, epodoc endpoint = 'biblio', # optional, defaults to biblio in case of published_data constituents = [] # optional, list of constituents )