{ "info": { "author": "LawTech Lab", "author_email": "a.gade@student.maastrichtuniversity.nl", "bugtrack_url": null, "classifiers": [], "description": "## echr extractor\r\n\r\nThis library contains functions to get ECHR data.\r\n\r\n## Version\r\n\r\nPython 3.9\r\n\r\n## Contributors\r\n\r\n\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
\r\n \r\n \"brodriguesdemiranda\"/\r\n
\r\n Benjamin Rodrigues de Miranda\r\n
\r\n
\r\n \r\n \"ChloeCro\"/\r\n
\r\n Chloe Crombach\r\n
\r\n
\r\n \r\n \"Cloud956\"/\r\n
\r\n Piotr Lewandowski\r\n
\r\n
\r\n \r\n \"pranavnbapat\"/\r\n
\r\n Pranav Bapat\r\n
\r\n
\r\n \r\n \"running-machin\"/\r\n
\r\n running-machin\r\n
\r\n
\r\n \r\n \"shashankmc\"/\r\n
\r\n shashankmc\r\n
\r\n
\r\n \r\n \"gijsvd\"/\r\n
\r\n gijsvd\r\n
\r\n
\r\n\r\n\r\n## How to install?\r\n\r\npip install echr-extractor\r\n\r\n## What are the functions?\r\n\r\n
    \r\n
  1. get_echr
  2. \r\n Gets all of the available metadata for echr cases from the HUDOC database.\r\n Can be saved in a file or returned in-memory.\r\n
    \r\n
  3. get_echr_extra
  4. \r\n Gets all of the available metadata for echr cases from the HUDOC database. \r\nOn top of that downloads the full text for each case downloaded. Can be saved in a file or returned in-memory.\r\n
    \r\n
  5. get_nodes_edges
  6. \r\n Gets all of the available nodes and edges for echr cases for given metadata from the HUDOC database.\r\n
\r\n\r\n## What are the parameters?\r\n\r\n
    \r\n
  1. get_echr
  2. \r\n \r\n
  3. get_echr_extra
  4. \r\n \r\n
  5. get_nodes_edges
  6. \r\n \r\n
\r\n\r\n## Examples\r\n\r\n```\r\nimport echr_extractor as echr\r\n\r\nBelow are examples for in-file saving:\r\n\r\ndf, json = echr.get_echr_extra(count=100,save_file='y',threads=10)\r\ndf = echr.get_echr(start_id=1,save_file='y',skip_missing_dates=True)\r\n\r\nBelow are examples for in-memory saving:\r\n\r\ndf, json = echr.get_echr_extra(start_id=20,end_id=3000,save_file='n')\r\n \r\ndf = echr.get_echr(start_id=1000,count=2000,save_file='n',verbose=True)\r\n\r\nnodes, edges = echr.get_nodes_edges(metadata_path='data/echr_metadata.csv',save_file='n')\r\n```\r\n\r\n```\r\n\r\n## License\r\n[![License: Apache 2.0](https://img.shields.io/github/license/maastrichtlawtech/extraction_libraries)](https://opensource.org/licenses/Apache-2.0)\r\n\r\nPreviously under the [MIT License](https://opensource.org/licenses/MIT), as of 28/10/2022 this work is licensed under a [Apache License, Version 2.0](https://opensource.org/licenses/Apache-2.0).\r\n\r\nApache License, Version 2.0\r\n\r\nCopyright (c) 2022 Maastricht Law & Tech Lab\r\n\r\nLicensed under the Apache License, Version 2.0 (the \"License\");\r\nyou may not use this file except in compliance with the License.\r\nYou may obtain a copy of the License at\r\n \r\n http://www.apache.org/licenses/LICENSE-2.0\r\n\r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an \"AS IS\" BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.\r\n```\r\n\r\n## Appendix\r\n\r\n```\r\nTo properly use the 'link' parameter of the extraction methods, the user should head to \r\n\r\nhttps://hudoc.echr.coe.int/eng#%20\r\n\r\nThere, the user can use the tools of Advanced Search of HUDOC to search for specific cases.\r\nAfterwards*, the user can copy the link of the current website, and pass it on to the extraction methods. \r\n\r\nKnown issues with the 'link' method:\r\n\r\n- Using the \" character in your searches will cause the extraction to fail. It will only work if that character is in the\r\nText section, where it is essential for proper use of the search. In all the other search fields, please do not use the \" character.\r\nIf it is essential for you work, please raise an issue on Github, and we can try to manually fix another field.\r\n\r\n\r\n* It should be noted that the link only updates after the 'search' button of the Advanced Search is clicked.\r\n\r\n\r\n\r\nThe full list of fields is as follows:\r\n\r\nfields = ['itemid','applicability','application','appno','article','conclusion','decisiondate','docname',\r\n'documentcollectionid','documentcollectionid2','doctype','doctypebranch','ecli','externalsources','extractedappno',\r\n'importance','introductiondate','isplaceholder','issue','judgementdate','kpdate','kpdateAsText','kpthesaurus',\r\n'languageisocode','meetingnumber','originatingbody','publishedby','Rank','referencedate','reportdate','representedby',\r\n'resolutiondate',resolutionnumber','respondent','respondentOrderEng','rulesofcourt','separateopinion','scl',\r\n'sharepointid','typedescription','nonviolation','violation']\r\n\r\nThese fields can take different values, for more information head to https://hudoc.echr.coe.int.\r\n```\r\n\r\n### Query_payload Parameter\r\nThis section will define in a step-by-step fashion the proper usage of the 'query_payload' parameter.\r\n\r\n1. Go to the [HUDOC website](https://hudoc.echr.coe.int/eng#%20). \r\n2. Input your search parameters.\r\n3. Right-click on the website and inspect the website elements.
\r\n![guide](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/inspect.png)\r\n4. After the tab on the right side has opened, enter the network section, which records requests made by the website.
\r\n![guide2](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/network.png)\r\n5. Here you might see some requests already present. If that is the case, press the record button twice to clear the history.\r\nOtherwise, continue to step 6.
\r\n![guide3](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/record.png)\r\n6. Once you are recording new requests and the history has been cleared, click the search button on the website to execute your search.\r\n![guide4](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/search.png)\r\n7. Now in the network tab, you should see new request records appear. Click the one on the top to inspect it.\r\n![guide5](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/grab_api.png)\r\n8. A tab with request information should appear. Enter the Payload section.\r\n![guide6](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/enter_payload.png)\r\n9. 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.\r\n![guide7](https://raw.githubusercontent.com/maastrichtlawtech/extraction_libraries/echr/echr/success.png)\r\n10. Now you know how to use the query_payload parameter!\r\n\r\n\r\n\r\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "echr,extractor,european,convention,human,rights,european convention,human rights,european convention on human rights", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "echr-extractor", "package_url": "https://pypi.org/project/echr-extractor/", "platform": null, "project_url": "https://pypi.org/project/echr-extractor/", "project_urls": { "Bug Tracker": "https://github.com/maastrichtlawtech/extraction_libraries", "Build Source": "https://github.com/maastrichtlawtech/extraction_libraries" }, "release_url": "https://pypi.org/project/echr-extractor/1.0.43/", "requires_dist": null, "requires_python": "", "summary": "Library for extracting ECHR data", "version": "1.0.43", "yanked": false, "yanked_reason": null }, "last_serial": 21399877, "releases": { "1.0.1": [ { "comment_text": "", "digests": { "blake2b_256": "1ce861af42e5b2755c7e0baf7eb331b3844050c6be2d43e5d97f032e571d6474", "md5": "b31670e88deece0316918877fcc888d2", "sha256": "437602a807a112695a326c0f40242feae8ca50d2255213a6b80df13e3fa30401" }, "downloads": -1, "filename": "echr_extractor-1.0.1.tar.gz", "has_sig": false, "md5_digest": "b31670e88deece0316918877fcc888d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6956, "upload_time": "2022-12-05T20:11:39", "upload_time_iso_8601": "2022-12-05T20:11:39.392958Z", "url": "https://files.pythonhosted.org/packages/1c/e8/61af42e5b2755c7e0baf7eb331b3844050c6be2d43e5d97f032e571d6474/echr_extractor-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.10": [ { "comment_text": "", "digests": { "blake2b_256": "c4ab628c831de91b1ceabc857a9bb604416e9ff5975e2465592ffa59afeb1edc", "md5": "f623c14a372963b739b345c7474b7f21", "sha256": "319ba59c5ae0791de6553378b84268b71dfa3b4644e843f44e6c8966ae6e5095" }, "downloads": -1, "filename": "echr_extractor-1.0.10.tar.gz", "has_sig": false, "md5_digest": "f623c14a372963b739b345c7474b7f21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10698, "upload_time": "2023-02-09T16:06:28", "upload_time_iso_8601": "2023-02-09T16:06:28.221906Z", "url": "https://files.pythonhosted.org/packages/c4/ab/628c831de91b1ceabc857a9bb604416e9ff5975e2465592ffa59afeb1edc/echr_extractor-1.0.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.11": [ { "comment_text": "", "digests": { "blake2b_256": "876c4c7517ee901307e2980d0109141acf4796f1cddf8ea1c489d28119ce83e7", "md5": "c06330c3cc563fe79cbd3c45b3029383", "sha256": "31f33d08d2a79494f70f99d03eb0d690998dee62aba489e0a878b2e943cf2515" }, "downloads": -1, "filename": "echr_extractor-1.0.11.tar.gz", "has_sig": false, "md5_digest": "c06330c3cc563fe79cbd3c45b3029383", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10708, "upload_time": "2023-02-13T15:24:13", "upload_time_iso_8601": "2023-02-13T15:24:13.522347Z", "url": "https://files.pythonhosted.org/packages/87/6c/4c7517ee901307e2980d0109141acf4796f1cddf8ea1c489d28119ce83e7/echr_extractor-1.0.11.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.12": [ { "comment_text": "", "digests": { "blake2b_256": "eff606ef6eccd108c48b3e57e4606faf45deb8cd08739ca60b2a826f46e7f7ca", "md5": "d11bc952320cfc73c4877fd6e8d8d0db", "sha256": "5f0994eea6e841ae64e3d486d8e766c793bab4bf5335b41b8bbfb87ce0a2a6dd" }, "downloads": -1, "filename": "echr_extractor-1.0.12.tar.gz", "has_sig": false, "md5_digest": "d11bc952320cfc73c4877fd6e8d8d0db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12186, "upload_time": "2023-02-13T16:06:15", "upload_time_iso_8601": "2023-02-13T16:06:15.922157Z", "url": "https://files.pythonhosted.org/packages/ef/f6/06ef6eccd108c48b3e57e4606faf45deb8cd08739ca60b2a826f46e7f7ca/echr_extractor-1.0.12.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.13": [ { "comment_text": "", "digests": { "blake2b_256": "f6a318715200dff3ee7ae29a9985fa7231c27f291ceface0f631db1c6fd971a2", "md5": "f1406f5feb57e80134bc36bef99b7df1", "sha256": "67a1c370c33756f619b6b726f1a83a9bb99746bd77352baf94fa8a4dec1ba5dd" }, "downloads": -1, "filename": "echr_extractor-1.0.13.tar.gz", "has_sig": false, "md5_digest": "f1406f5feb57e80134bc36bef99b7df1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12018, "upload_time": "2023-02-22T16:57:45", "upload_time_iso_8601": "2023-02-22T16:57:45.611143Z", "url": "https://files.pythonhosted.org/packages/f6/a3/18715200dff3ee7ae29a9985fa7231c27f291ceface0f631db1c6fd971a2/echr_extractor-1.0.13.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.14": [ { "comment_text": "", "digests": { "blake2b_256": "b1cc45169beac835830bb5bab49e6c82ffc2ef052264c1671e399a8184a8a417", "md5": "bc10c2e78055a02e6e781b3acbeb1dea", "sha256": "76c5e7a28d9cb2d0358b4d39da284a9074bd6e7676d27d01a373709f31021ee8" }, "downloads": -1, "filename": "echr_extractor-1.0.14.tar.gz", "has_sig": false, "md5_digest": "bc10c2e78055a02e6e781b3acbeb1dea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12038, "upload_time": "2023-02-28T13:58:11", "upload_time_iso_8601": "2023-02-28T13:58:11.591204Z", "url": "https://files.pythonhosted.org/packages/b1/cc/45169beac835830bb5bab49e6c82ffc2ef052264c1671e399a8184a8a417/echr_extractor-1.0.14.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.15": [ { "comment_text": "", "digests": { "blake2b_256": "9b1e32068f26215fa03f302bbb2977eaf76baac44a899bca7b1a39f2d57a548c", "md5": "4bd4cd6922e9ec98773efc24b59ff097", "sha256": "ddd114585698c7bd1bc60ad40bfe80a0024c676be9bc32e270e83a27eea003be" }, "downloads": -1, "filename": "echr_extractor-1.0.15.tar.gz", "has_sig": false, "md5_digest": "4bd4cd6922e9ec98773efc24b59ff097", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12087, "upload_time": "2023-03-01T14:26:33", "upload_time_iso_8601": "2023-03-01T14:26:33.243989Z", "url": "https://files.pythonhosted.org/packages/9b/1e/32068f26215fa03f302bbb2977eaf76baac44a899bca7b1a39f2d57a548c/echr_extractor-1.0.15.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.16": [ { "comment_text": "", "digests": { "blake2b_256": "b2ea6a29b7707eb112a68224bc6c75fe6aa3886142dd634fd1392ba2587a72ed", "md5": "41b8f1a408c927bde3804f4108026202", "sha256": "26134aac3e52dcaf926d9e6081b8728e250b18747aa4cf1c69b08982d547de87" }, "downloads": -1, "filename": "echr_extractor-1.0.16.tar.gz", "has_sig": false, "md5_digest": "41b8f1a408c927bde3804f4108026202", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12108, "upload_time": "2023-03-01T18:13:54", "upload_time_iso_8601": "2023-03-01T18:13:54.406840Z", "url": "https://files.pythonhosted.org/packages/b2/ea/6a29b7707eb112a68224bc6c75fe6aa3886142dd634fd1392ba2587a72ed/echr_extractor-1.0.16.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.17": [ { "comment_text": "", "digests": { "blake2b_256": "fcd5f49a13d2134e3892cfe0b13bf82b9876de672bcb36ab88885673bcd877de", "md5": "31b9e4bf9d4992aa75085a09879b1cd9", "sha256": "59af2a04da03c1df0ea04836d930acb34e3e0c33dd8545922bdd872de245cc13" }, "downloads": -1, "filename": "echr_extractor-1.0.17.tar.gz", "has_sig": false, "md5_digest": "31b9e4bf9d4992aa75085a09879b1cd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15508, "upload_time": "2023-03-28T11:20:59", "upload_time_iso_8601": "2023-03-28T11:20:59.494449Z", "url": "https://files.pythonhosted.org/packages/fc/d5/f49a13d2134e3892cfe0b13bf82b9876de672bcb36ab88885673bcd877de/echr_extractor-1.0.17.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.18": [ { "comment_text": "", "digests": { "blake2b_256": "7c861c18d2cbb22c2c381b1a59c14d3b562cd6c9538042a1394c8d70105d2339", "md5": "98e584e4a537087652e0d2aba23c3c91", "sha256": "b3794d4e6ed419dd4bf81c3c5e788737ebc94e121a0de673fce309ce2c91a194" }, "downloads": -1, "filename": "echr_extractor-1.0.18.tar.gz", "has_sig": false, "md5_digest": "98e584e4a537087652e0d2aba23c3c91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15536, "upload_time": "2023-03-29T10:54:28", "upload_time_iso_8601": "2023-03-29T10:54:28.467562Z", "url": "https://files.pythonhosted.org/packages/7c/86/1c18d2cbb22c2c381b1a59c14d3b562cd6c9538042a1394c8d70105d2339/echr_extractor-1.0.18.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.19": [ { "comment_text": "", "digests": { "blake2b_256": "e2c0b994380a0a7963bacd312e7a49149d9ac70584f56339d6b8b238deba9b51", "md5": "19601090dfd0f31ccd5dfe5c0117f8db", "sha256": "c1fe4be5faaa85d59cec9278f190a1830cbc8f257039cc8cf2992ca3b8baec90" }, "downloads": -1, "filename": "echr_extractor-1.0.19.tar.gz", "has_sig": false, "md5_digest": "19601090dfd0f31ccd5dfe5c0117f8db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15789, "upload_time": "2023-04-04T16:15:34", "upload_time_iso_8601": "2023-04-04T16:15:34.358045Z", "url": "https://files.pythonhosted.org/packages/e2/c0/b994380a0a7963bacd312e7a49149d9ac70584f56339d6b8b238deba9b51/echr_extractor-1.0.19.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "blake2b_256": "064cae809e51b32e8cc9ce5dda8e9d7b2e89e7e78e6b488c57ab2aa410f379e6", "md5": "3162344e903c1fa2587b621065dee2ca", "sha256": "3f60793832996341a18643005ef170e18322c14f72aed6f274b77186f97843f9" }, "downloads": -1, "filename": "echr_extractor-1.0.2.tar.gz", "has_sig": false, "md5_digest": "3162344e903c1fa2587b621065dee2ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6939, "upload_time": "2022-12-05T20:21:16", "upload_time_iso_8601": "2022-12-05T20:21:16.427736Z", "url": "https://files.pythonhosted.org/packages/06/4c/ae809e51b32e8cc9ce5dda8e9d7b2e89e7e78e6b488c57ab2aa410f379e6/echr_extractor-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.20": [ { "comment_text": "", "digests": { "blake2b_256": "e9438ca847ff628b99e75b9e9677fd75c485e52d491c0cd9c3668f7349ad758a", "md5": "bfd33d42cccb69459bc8e35daa67acd3", "sha256": "e13dd05ad1133724d5d68f066258dde67114d6b75c28d6136f44dbbaf6b573c7" }, "downloads": -1, "filename": "echr_extractor-1.0.20.tar.gz", "has_sig": false, "md5_digest": "bfd33d42cccb69459bc8e35daa67acd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16018, "upload_time": "2023-04-18T15:07:18", "upload_time_iso_8601": "2023-04-18T15:07:18.301280Z", "url": "https://files.pythonhosted.org/packages/e9/43/8ca847ff628b99e75b9e9677fd75c485e52d491c0cd9c3668f7349ad758a/echr_extractor-1.0.20.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.21": [ { "comment_text": "", "digests": { "blake2b_256": "d941ca98566bcb3a7c75bb9d31ec571024018c279d8082f87629a02283654517", "md5": "53435eb7dde4551491843f90620648ec", "sha256": "8c55b48dddaaa2a7222381d18117cdedc90e2a64a448c27642e10f008d05fd79" }, "downloads": -1, "filename": "echr_extractor-1.0.21.tar.gz", "has_sig": false, "md5_digest": "53435eb7dde4551491843f90620648ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15986, "upload_time": "2023-06-30T19:32:02", "upload_time_iso_8601": "2023-06-30T19:32:02.706788Z", "url": "https://files.pythonhosted.org/packages/d9/41/ca98566bcb3a7c75bb9d31ec571024018c279d8082f87629a02283654517/echr_extractor-1.0.21.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.22": [ { "comment_text": "", "digests": { "blake2b_256": "dc5bec590c852446cef4f8341ce49fb84c6e09b470835a51afb2d36878d049c2", "md5": "cfcd12e2386cbc36eaf1af6f02410644", "sha256": "8fb81ef075bf1d8e1c6e8e77dd392fb50e88733e7c431d3cfedad85952f6a748" }, "downloads": -1, "filename": "echr_extractor-1.0.22.tar.gz", "has_sig": false, "md5_digest": "cfcd12e2386cbc36eaf1af6f02410644", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15965, "upload_time": "2023-06-30T19:53:46", "upload_time_iso_8601": "2023-06-30T19:53:46.827329Z", "url": "https://files.pythonhosted.org/packages/dc/5b/ec590c852446cef4f8341ce49fb84c6e09b470835a51afb2d36878d049c2/echr_extractor-1.0.22.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.23": [ { "comment_text": "", "digests": { "blake2b_256": "095901761f7ee116cf9571a726de24339c13b05f5663e829e41e1ef602378e25", "md5": "e7999467dd050e1513e90c4364715ae8", "sha256": "88e923926f471475dc4f8de126f54b5a037ec2b1f65ec0a963222657e024198f" }, "downloads": -1, "filename": "echr_extractor-1.0.23.tar.gz", "has_sig": false, "md5_digest": "e7999467dd050e1513e90c4364715ae8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15983, "upload_time": "2023-07-17T10:15:44", "upload_time_iso_8601": "2023-07-17T10:15:44.671400Z", "url": "https://files.pythonhosted.org/packages/09/59/01761f7ee116cf9571a726de24339c13b05f5663e829e41e1ef602378e25/echr_extractor-1.0.23.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.24": [ { "comment_text": "", "digests": { "blake2b_256": "323d73bb89815f75570627dac14956c322f8e7f14ffdd3fda120b5b198e2ea22", "md5": "035bce82a12f8433e5f4894e34fdd6a3", "sha256": "554eed0ed7e5099de40c02aa0f53de44eebfcba5078627def37ec881a676f8ab" }, "downloads": -1, "filename": "echr_extractor-1.0.24.tar.gz", "has_sig": false, "md5_digest": "035bce82a12f8433e5f4894e34fdd6a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15814, "upload_time": "2023-07-18T18:16:05", "upload_time_iso_8601": "2023-07-18T18:16:05.675085Z", "url": "https://files.pythonhosted.org/packages/32/3d/73bb89815f75570627dac14956c322f8e7f14ffdd3fda120b5b198e2ea22/echr_extractor-1.0.24.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.25": [ { "comment_text": "", "digests": { "blake2b_256": "c6eb51f90d7833720e2c9a56d2150148945df9ded099800336726c629b69e194", "md5": "3f8b1a94014de0ee63daa72f9f482b9b", "sha256": "9519032b0231d2287964501a1fbea82485c86a4bda35cd6473575756cad2b966" }, "downloads": -1, "filename": "echr_extractor-1.0.25.tar.gz", "has_sig": false, "md5_digest": "3f8b1a94014de0ee63daa72f9f482b9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15838, "upload_time": "2023-07-27T14:39:54", "upload_time_iso_8601": "2023-07-27T14:39:54.404226Z", "url": "https://files.pythonhosted.org/packages/c6/eb/51f90d7833720e2c9a56d2150148945df9ded099800336726c629b69e194/echr_extractor-1.0.25.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.26": [ { "comment_text": "", "digests": { "blake2b_256": "26e11303548b405eb3564fb06314625590a8fe8dffa3241181678d9f42d0fdf4", "md5": "a048ef8bcea3b5bfb104278f8a727480", "sha256": "cecf65db987f5de43219058cd404af20be5f2c3dde37c9908044c31cdd975cee" }, "downloads": -1, "filename": "echr_extractor-1.0.26.tar.gz", "has_sig": false, "md5_digest": "a048ef8bcea3b5bfb104278f8a727480", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15799, "upload_time": "2023-08-04T13:41:58", "upload_time_iso_8601": "2023-08-04T13:41:58.514813Z", "url": "https://files.pythonhosted.org/packages/26/e1/1303548b405eb3564fb06314625590a8fe8dffa3241181678d9f42d0fdf4/echr_extractor-1.0.26.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.27": [ { "comment_text": "", "digests": { "blake2b_256": "4ab0a4bdfb45beb3afb24cad47774a36adad7b8b357d014eb87342d2ed8686ff", "md5": "f7c03c0f20f693213d96aba2eb3062c3", "sha256": "502f063a34bc5b11529e2dafb47162c0a04c362d1421bff5b626f77a1c8d2a42" }, "downloads": -1, "filename": "echr_extractor-1.0.27.tar.gz", "has_sig": false, "md5_digest": "f7c03c0f20f693213d96aba2eb3062c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15667, "upload_time": "2023-08-12T13:52:54", "upload_time_iso_8601": "2023-08-12T13:52:54.810435Z", "url": "https://files.pythonhosted.org/packages/4a/b0/a4bdfb45beb3afb24cad47774a36adad7b8b357d014eb87342d2ed8686ff/echr_extractor-1.0.27.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.28": [ { "comment_text": "", "digests": { "blake2b_256": "fc766890e02e59605f5b3a856234130af5aa14be991671fa9878a14eb82a2078", "md5": "f13a6887491f349cdcece47fdfa9b36f", "sha256": "597759cd2ad363e14502e36e165187db6e6ee196ab2d21ce0ed04651eda25891" }, "downloads": -1, "filename": "echr_extractor-1.0.28.tar.gz", "has_sig": false, "md5_digest": "f13a6887491f349cdcece47fdfa9b36f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15728, "upload_time": "2023-08-12T13:58:57", "upload_time_iso_8601": "2023-08-12T13:58:57.192333Z", "url": "https://files.pythonhosted.org/packages/fc/76/6890e02e59605f5b3a856234130af5aa14be991671fa9878a14eb82a2078/echr_extractor-1.0.28.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.29": [ { "comment_text": "", "digests": { "blake2b_256": "ca04757760b10293ceb64f3b3303fc6c4030f82f6fa3e3987bc81dd898b31691", "md5": "95819acb1c3c4ca238dc3c760efc80a9", "sha256": "ce5a4a318c9bae2904b3e7bdebd59390eb7bae0884c3315530d583984683c031" }, "downloads": -1, "filename": "echr_extractor-1.0.29.tar.gz", "has_sig": false, "md5_digest": "95819acb1c3c4ca238dc3c760efc80a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15749, "upload_time": "2023-08-13T15:46:07", "upload_time_iso_8601": "2023-08-13T15:46:07.206803Z", "url": "https://files.pythonhosted.org/packages/ca/04/757760b10293ceb64f3b3303fc6c4030f82f6fa3e3987bc81dd898b31691/echr_extractor-1.0.29.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "blake2b_256": "159015fbc655e6f5e2b4c3dd5a526e2a82eb807e0bc11e46de441b5d8590d0cf", "md5": "d8df24bc2757ce2263f88b5ea2a2752d", "sha256": "4617c7037de1bb35bd31e4f6360b4677aad26b3030cb10685b2bb4d40da6f9ea" }, "downloads": -1, "filename": "echr_extractor-1.0.3.tar.gz", "has_sig": false, "md5_digest": "d8df24bc2757ce2263f88b5ea2a2752d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6924, "upload_time": "2022-12-05T20:22:41", "upload_time_iso_8601": "2022-12-05T20:22:41.118041Z", "url": "https://files.pythonhosted.org/packages/15/90/15fbc655e6f5e2b4c3dd5a526e2a82eb807e0bc11e46de441b5d8590d0cf/echr_extractor-1.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.30": [ { "comment_text": "", "digests": { "blake2b_256": "7e41d70b44ade15323a351057f6768f1daec558bddb7774cb6c48c414b19b64b", "md5": "23e5185059e645b44556e4cecd39c361", "sha256": "1dae41fb067fdb868140ae6deb17213189ad846f7f9d6a05238aedcb456f1d4f" }, "downloads": -1, "filename": "echr_extractor-1.0.30.tar.gz", "has_sig": false, "md5_digest": "23e5185059e645b44556e4cecd39c361", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15872, "upload_time": "2023-08-15T13:27:13", "upload_time_iso_8601": "2023-08-15T13:27:13.493152Z", "url": "https://files.pythonhosted.org/packages/7e/41/d70b44ade15323a351057f6768f1daec558bddb7774cb6c48c414b19b64b/echr_extractor-1.0.30.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.31": [ { "comment_text": "", "digests": { "blake2b_256": "9fe29c90a94956e40dda66591a6c68496729eb4ffe9c465fa04cb79e6943e3ad", "md5": "e271f8599e3fb2d97bb2922b5844b7bb", "sha256": "d928bed17eac8a603edfdce6c82b12952af10f177603594dd27d2a3e68f45ce7" }, "downloads": -1, "filename": "echr_extractor-1.0.31.tar.gz", "has_sig": false, "md5_digest": "e271f8599e3fb2d97bb2922b5844b7bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15837, "upload_time": "2023-08-17T10:36:08", "upload_time_iso_8601": "2023-08-17T10:36:08.589372Z", "url": "https://files.pythonhosted.org/packages/9f/e2/9c90a94956e40dda66591a6c68496729eb4ffe9c465fa04cb79e6943e3ad/echr_extractor-1.0.31.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.32": [ { "comment_text": "", "digests": { "blake2b_256": "7d7a8e4d09810ed8599dfa320f618e414b675a9f06f4506957d8a400638c4608", "md5": "1c44e47e245e91b99d00df8cbbadf2a1", "sha256": "163a4882e3e35a6e5cd43f2036dce5782c9898a565fae38a4bfb6546f5c813e9" }, "downloads": -1, "filename": "echr_extractor-1.0.32.tar.gz", "has_sig": false, "md5_digest": "1c44e47e245e91b99d00df8cbbadf2a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16153, "upload_time": "2023-09-25T13:57:55", "upload_time_iso_8601": "2023-09-25T13:57:55.919672Z", "url": "https://files.pythonhosted.org/packages/7d/7a/8e4d09810ed8599dfa320f618e414b675a9f06f4506957d8a400638c4608/echr_extractor-1.0.32.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.33": [ { "comment_text": "", "digests": { "blake2b_256": "94c332416882cdfe6adf84e6b132b88a934f825c5becbe0daabce96b51dcc5f4", "md5": "beec64e38de60af207827328c5b9fbdc", "sha256": "cbea06187b05cfe637ae377ee44974e437a3f21a700ec1b48511e79edbeb2dad" }, "downloads": -1, "filename": "echr_extractor-1.0.33.tar.gz", "has_sig": false, "md5_digest": "beec64e38de60af207827328c5b9fbdc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16255, "upload_time": "2023-09-27T12:36:13", "upload_time_iso_8601": "2023-09-27T12:36:13.310217Z", "url": "https://files.pythonhosted.org/packages/94/c3/32416882cdfe6adf84e6b132b88a934f825c5becbe0daabce96b51dcc5f4/echr_extractor-1.0.33.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.34": [ { "comment_text": "", "digests": { "blake2b_256": "6f37e935c83f9fb25d21730f647511abe842c49cc0155e185c8097aa9058e4f5", "md5": "eb3243d2c57ce63d6266f1cb9e18121f", "sha256": "f053f70686eb8306104f20270c0792e10bc10e40264f5736a84f52c8d4d248b4" }, "downloads": -1, "filename": "echr_extractor-1.0.34.tar.gz", "has_sig": false, "md5_digest": "eb3243d2c57ce63d6266f1cb9e18121f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16229, "upload_time": "2023-09-27T16:25:50", "upload_time_iso_8601": "2023-09-27T16:25:50.518126Z", "url": "https://files.pythonhosted.org/packages/6f/37/e935c83f9fb25d21730f647511abe842c49cc0155e185c8097aa9058e4f5/echr_extractor-1.0.34.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.35": [ { "comment_text": "", "digests": { "blake2b_256": "ccb8aa3ca28aef9cb24c19c4616205972e7c1a86d9636b323b79fbe32eeac88f", "md5": "2969f4cdfe16821b2cb7181d90851514", "sha256": "2958979771b428930f0a42e3e20c2a2b23e97c62fc3d8474b3d6ef742737fdbc" }, "downloads": -1, "filename": "echr_extractor-1.0.35.tar.gz", "has_sig": false, "md5_digest": "2969f4cdfe16821b2cb7181d90851514", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16385, "upload_time": "2023-10-03T08:42:58", "upload_time_iso_8601": "2023-10-03T08:42:58.094632Z", "url": "https://files.pythonhosted.org/packages/cc/b8/aa3ca28aef9cb24c19c4616205972e7c1a86d9636b323b79fbe32eeac88f/echr_extractor-1.0.35.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.36": [ { "comment_text": "", "digests": { "blake2b_256": "b8a8a06f7c36602b4cc111876d5cd7af13d65fd780f273fefd848439ec7d79ee", "md5": "788a98eb79bb3a453a1f44440fd3f526", "sha256": "8d11f3ce5cc0bbd7fb9e9a00250477fdfd9d96466bde585962d1c35f0c0dd6b9" }, "downloads": -1, "filename": "echr_extractor-1.0.36.tar.gz", "has_sig": false, "md5_digest": "788a98eb79bb3a453a1f44440fd3f526", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16379, "upload_time": "2023-10-03T08:44:36", "upload_time_iso_8601": "2023-10-03T08:44:36.822611Z", "url": "https://files.pythonhosted.org/packages/b8/a8/a06f7c36602b4cc111876d5cd7af13d65fd780f273fefd848439ec7d79ee/echr_extractor-1.0.36.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.37": [ { "comment_text": "", "digests": { "blake2b_256": "3076754053821ca897e6d06264dead762f10fd76e762777ab0273b59c615f71f", "md5": "e1247e07dda922bedad1bb09e0ca50ef", "sha256": "e625143dfec93fe364b1d408cd95ca21abb78dd29bb2d48ce49f2ceaa983efcf" }, "downloads": -1, "filename": "echr_extractor-1.0.37.tar.gz", "has_sig": false, "md5_digest": "e1247e07dda922bedad1bb09e0ca50ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16372, "upload_time": "2023-10-03T08:48:42", "upload_time_iso_8601": "2023-10-03T08:48:42.984132Z", "url": "https://files.pythonhosted.org/packages/30/76/754053821ca897e6d06264dead762f10fd76e762777ab0273b59c615f71f/echr_extractor-1.0.37.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.38": [ { "comment_text": "", "digests": { "blake2b_256": "0f579bf0a2db6575948fb306b0af704c1a64a640f794d34d5d858ce02e8abe3f", "md5": "7d046e6000c2dd96dd648c184c595b64", "sha256": "eb599bf27a9f5467d54d00ebe3f99db4f6db154866173cd4751daee8d4c59479" }, "downloads": -1, "filename": "echr_extractor-1.0.38.tar.gz", "has_sig": false, "md5_digest": "7d046e6000c2dd96dd648c184c595b64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16610, "upload_time": "2023-10-03T10:12:42", "upload_time_iso_8601": "2023-10-03T10:12:42.826316Z", "url": "https://files.pythonhosted.org/packages/0f/57/9bf0a2db6575948fb306b0af704c1a64a640f794d34d5d858ce02e8abe3f/echr_extractor-1.0.38.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.39": [ { "comment_text": "", "digests": { "blake2b_256": "fefbbd000874bc875eb1ce3ba0ea554e7c9b9490196cf3f2b4b1217ac5fa9bb6", "md5": "4852187781375875009ac60cb46d8e09", "sha256": "33c3cde8ae45ff1defa794e109592291b641716bee9ed9b112d2124b5f42a9ff" }, "downloads": -1, "filename": "echr_extractor-1.0.39.tar.gz", "has_sig": false, "md5_digest": "4852187781375875009ac60cb46d8e09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16435, "upload_time": "2023-10-03T11:52:45", "upload_time_iso_8601": "2023-10-03T11:52:45.878563Z", "url": "https://files.pythonhosted.org/packages/fe/fb/bd000874bc875eb1ce3ba0ea554e7c9b9490196cf3f2b4b1217ac5fa9bb6/echr_extractor-1.0.39.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.4": [ { "comment_text": "", "digests": { "blake2b_256": "335a2afbdf534f7f78ede2d65ae89345daa703f31ceb0eed9bf75524dcb4ef88", "md5": "ca7804014df2cd0dd5936bcd976d98bb", "sha256": "b46ad4a5fb6b401234f604caeaf4f7dd6215fe6defddb67b428b991299067b62" }, "downloads": -1, "filename": "echr_extractor-1.0.4.tar.gz", "has_sig": false, "md5_digest": "ca7804014df2cd0dd5936bcd976d98bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6960, "upload_time": "2022-12-05T20:32:10", "upload_time_iso_8601": "2022-12-05T20:32:10.622953Z", "url": "https://files.pythonhosted.org/packages/33/5a/2afbdf534f7f78ede2d65ae89345daa703f31ceb0eed9bf75524dcb4ef88/echr_extractor-1.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.40": [ { "comment_text": "", "digests": { "blake2b_256": "9c0c833a6e05ebdc8b7c76e4e83373a5a2a051175a4740eef161d233dbcf2778", "md5": "e23bd4bad643e3a693eee76a9c0d1950", "sha256": "ec9d74a9a4be483035456acf77f148c9f36d5dd8ed952424c9a48a7100019cc8" }, "downloads": -1, "filename": "echr_extractor-1.0.40.tar.gz", "has_sig": false, "md5_digest": "e23bd4bad643e3a693eee76a9c0d1950", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16465, "upload_time": "2023-10-03T12:40:21", "upload_time_iso_8601": "2023-10-03T12:40:21.445718Z", "url": "https://files.pythonhosted.org/packages/9c/0c/833a6e05ebdc8b7c76e4e83373a5a2a051175a4740eef161d233dbcf2778/echr_extractor-1.0.40.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.41": [ { "comment_text": "", "digests": { "blake2b_256": "08eb6b5efd1a1150b045a72296b2cda925d29580b3c50dd7111d36aed09481d0", "md5": "3f14e82d6e7446281554f1bcce087758", "sha256": "011aeeb70f80b005ff35813c160aa4700f0afa22e3af9cdb908ce28e10e723b3" }, "downloads": -1, "filename": "echr_extractor-1.0.41.tar.gz", "has_sig": false, "md5_digest": "3f14e82d6e7446281554f1bcce087758", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16479, "upload_time": "2023-10-03T13:32:11", "upload_time_iso_8601": "2023-10-03T13:32:11.005523Z", "url": "https://files.pythonhosted.org/packages/08/eb/6b5efd1a1150b045a72296b2cda925d29580b3c50dd7111d36aed09481d0/echr_extractor-1.0.41.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.42": [ { "comment_text": "", "digests": { "blake2b_256": "1a224500ed398a2812c08ba3d9bab51021e5e62aa15936e4c8b29a8e1e57129c", "md5": "73f8b7f188d72c0d03d2607912987f56", "sha256": "adbee61c6be94316f20abe1fb3cdafd97ff8ef42716f9f72fb363902213fd1d0" }, "downloads": -1, "filename": "echr_extractor-1.0.42.tar.gz", "has_sig": false, "md5_digest": "73f8b7f188d72c0d03d2607912987f56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18125, "upload_time": "2023-10-04T15:24:14", "upload_time_iso_8601": "2023-10-04T15:24:14.900547Z", "url": "https://files.pythonhosted.org/packages/1a/22/4500ed398a2812c08ba3d9bab51021e5e62aa15936e4c8b29a8e1e57129c/echr_extractor-1.0.42.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.43": [ { "comment_text": "", "digests": { "blake2b_256": "072c4bd625f53260e606be93f20d5e9123c9ff3ca8ec12a839687a1386998d9c", "md5": "fdee4eff1ad2165b2098046035882ffb", "sha256": "d07fb02f8f588bc9f8510bb5e7e7ff4b5c0b70540403045fdb86eee03239cc90" }, "downloads": -1, "filename": "echr_extractor-1.0.43.tar.gz", "has_sig": false, "md5_digest": "fdee4eff1ad2165b2098046035882ffb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18235, "upload_time": "2023-10-04T15:31:25", "upload_time_iso_8601": "2023-10-04T15:31:25.955008Z", "url": "https://files.pythonhosted.org/packages/07/2c/4bd625f53260e606be93f20d5e9123c9ff3ca8ec12a839687a1386998d9c/echr_extractor-1.0.43.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.5": [ { "comment_text": "", "digests": { "blake2b_256": "2e72b054c3e519c0006195c11d7445b553e490d0714df894742435bbbfa7bd6f", "md5": "d3c4dfe3a35736c073833b20f04e2601", "sha256": "91cf65c15fdb4647e596374877d3f97dee390fd029f0394a524de5932cfad4e0" }, "downloads": -1, "filename": "echr_extractor-1.0.5.tar.gz", "has_sig": false, "md5_digest": "d3c4dfe3a35736c073833b20f04e2601", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10203, "upload_time": "2022-12-06T19:50:06", "upload_time_iso_8601": "2022-12-06T19:50:06.593075Z", "url": "https://files.pythonhosted.org/packages/2e/72/b054c3e519c0006195c11d7445b553e490d0714df894742435bbbfa7bd6f/echr_extractor-1.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.6": [ { "comment_text": "", "digests": { "blake2b_256": "1e35cd1dc5dbdc32cdc0e71df68909685b818802c768733b564b1209ec034299", "md5": "bf8d319ace0109c8cf88304e93f94996", "sha256": "ace62b15dcbc9874148cd074569dcffaf6d70eec01d56da7b90aa1b228033c54" }, "downloads": -1, "filename": "echr_extractor-1.0.6.tar.gz", "has_sig": false, "md5_digest": "bf8d319ace0109c8cf88304e93f94996", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10288, "upload_time": "2022-12-11T19:27:45", "upload_time_iso_8601": "2022-12-11T19:27:45.134737Z", "url": "https://files.pythonhosted.org/packages/1e/35/cd1dc5dbdc32cdc0e71df68909685b818802c768733b564b1209ec034299/echr_extractor-1.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.7": [ { "comment_text": "", "digests": { "blake2b_256": "b98f88be65794c902545e51bb0ea7b35d690f9dbb58909093d697798c419be26", "md5": "e994e77ed01878eb65d4fdf2e30bcea5", "sha256": "f08743945281282d41ef1d4eb4cb6acc8fdf0a7a63c69391d2fd525a4c5d7741" }, "downloads": -1, "filename": "echr_extractor-1.0.7.tar.gz", "has_sig": false, "md5_digest": "e994e77ed01878eb65d4fdf2e30bcea5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10788, "upload_time": "2022-12-25T15:52:20", "upload_time_iso_8601": "2022-12-25T15:52:20.710679Z", "url": "https://files.pythonhosted.org/packages/b9/8f/88be65794c902545e51bb0ea7b35d690f9dbb58909093d697798c419be26/echr_extractor-1.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.8": [ { "comment_text": "", "digests": { "blake2b_256": "b7f764640f94476ad3f1baee83734bcf3efe7dd150563896a1cab166eb5b0f94", "md5": "e653a40a73a58864bc83f952a5f4599c", "sha256": "3a83495de9b11b5c1f2105cf3b7f9849e465bb33f73fa4d33006ff24bece2a5c" }, "downloads": -1, "filename": "echr_extractor-1.0.8.tar.gz", "has_sig": false, "md5_digest": "e653a40a73a58864bc83f952a5f4599c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10741, "upload_time": "2023-01-04T14:26:14", "upload_time_iso_8601": "2023-01-04T14:26:14.055417Z", "url": "https://files.pythonhosted.org/packages/b7/f7/64640f94476ad3f1baee83734bcf3efe7dd150563896a1cab166eb5b0f94/echr_extractor-1.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.9": [ { "comment_text": "", "digests": { "blake2b_256": "9da5d48a4f22c10ef1f3cf421c9ab48569b6c522664cd91d296d815e242387e7", "md5": "3ba021f609b5abcfcc05a080798e0a5c", "sha256": "7fd96ba464b53db6cff384848f48649b54d5a1332d0beaccc09ab1d9dac156b7" }, "downloads": -1, "filename": "echr_extractor-1.0.9.tar.gz", "has_sig": false, "md5_digest": "3ba021f609b5abcfcc05a080798e0a5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10764, "upload_time": "2023-01-18T16:40:54", "upload_time_iso_8601": "2023-01-18T16:40:54.056861Z", "url": "https://files.pythonhosted.org/packages/9d/a5/d48a4f22c10ef1f3cf421c9ab48569b6c522664cd91d296d815e242387e7/echr_extractor-1.0.9.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "blake2b_256": "072c4bd625f53260e606be93f20d5e9123c9ff3ca8ec12a839687a1386998d9c", "md5": "fdee4eff1ad2165b2098046035882ffb", "sha256": "d07fb02f8f588bc9f8510bb5e7e7ff4b5c0b70540403045fdb86eee03239cc90" }, "downloads": -1, "filename": "echr_extractor-1.0.43.tar.gz", "has_sig": false, "md5_digest": "fdee4eff1ad2165b2098046035882ffb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18235, "upload_time": "2023-10-04T15:31:25", "upload_time_iso_8601": "2023-10-04T15:31:25.955008Z", "url": "https://files.pythonhosted.org/packages/07/2c/4bd625f53260e606be93f20d5e9123c9ff3ca8ec12a839687a1386998d9c/echr_extractor-1.0.43.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }