From 1bf48c5307fc2b032ae7ceb0392fa9ec135900bb Mon Sep 17 00:00:00 2001 From: Piotr Lewandowski Date: Wed, 4 Oct 2023 17:31:46 +0200 Subject: [PATCH] images fix --- echr/README.md | 14 +++++++------- echr/setup.py | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/echr/README.md b/echr/README.md index da8e705..8593fab 100644 --- a/echr/README.md +++ b/echr/README.md @@ -255,20 +255,20 @@ This section will define in a step-by-step fashion the proper usage of the 'quer 1. Go to the [HUDOC website](https://hudoc.echr.coe.int/eng#%20). 2. Input your search parameters. 3. Right-click on the website and inspect the website elements.
-![guide](inspect.png) +![guide](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/inspect.png) 4. After the tab on the right side has opened, enter the network section, which records requests made by the website.
-![guide2](network.png) +![guide2](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/network.png) 5. Here you might see some requests already present. If that is the case, press the record button twice to clear the history. Otherwise, continue to step 6.
-![guide3](record.png) +![guide3](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/record.png) 6. Once you are recording new requests and the history has been cleared, click the search button on the website to execute your search. -![guide4](search.png) +![guide4](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/search.png) 7. Now in the network tab, you should see new request records appear. Click the one on the top to inspect it. -![guide5](grab_api.png) +![guide5](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/grab_api.png) 8. A tab with request information should appear. Enter the Payload section. -![guide6](enter_payload.png) +![guide6](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/enter_payload.png) 9. Here the query payload should be present. Copy its value, and use it as the 'query_payload' parameter in code. It should be noted that this parameter should be used as a string surrounded by the single quotation mark ( ' ) , as the query payload might include the double quotation mark ( " ) characters. -![guide7](success.png) +![guide7](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/success.png) 10. Now you know how to use the query_payload parameter! diff --git a/echr/setup.py b/echr/setup.py index de5283e..f546e56 100644 --- a/echr/setup.py +++ b/echr/setup.py @@ -10,7 +10,7 @@ setup( name='echr_extractor', packages=find_packages(include=['echr_extractor']), - version='1.0.42', + version='1.0.43', description='Library for extracting ECHR data', author='LawTech Lab', license='MIT',