-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added download cli cmd #528
Merged
Merged
Changes from 11 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
c0f699f
Added download cli cmd
axif0 51c31cb
Merge branch 'Issue_517' of https://github.com/axif0/Scribe-Data into…
axif0 4b9a5bb
user can download 2024/12/04 or 2024-12-04
axif0 1b0d6fa
rename check_existing_lexeme_dump function to check_lexeme_dump_promp…
axif0 8ce7744
final
axif0 38d09dc
small issue fix
axif0 6191ab9
remove tests for get -all
axif0 e1553f8
Merge branch 'main' into Issue_517
wkyoshida e5d68f7
Apply suggestions from code review
andrewtavis 29707db
Update var names given PR suggestions + minor changes
andrewtavis 27378b5
Move files from Wiktionary utils to WD utils - delete Wiktionary dir
andrewtavis 6e70995
Update all docstrings and add documentation for how to write them
andrewtavis c074ae2
Comment and file formatting
andrewtavis 66242f4
Re-add get all for lang and dt only + fix tests with input patch
andrewtavis 962684a
Fix AttributeError: correct wikidata_dump_path argument mapping in ge…
axif0 e6d1a71
Update changelog given Wikidata dump functionality
andrewtavis a2a9fc3
Fix message to user and dir name in docstrings
andrewtavis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ Scribe-Data | |
unicode/index | ||
wikidata/index | ||
wikipedia/index | ||
wiktionary/index | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
""" | ||
Functions for downloading Wikidata lexeme dumps. | ||
|
||
.. raw:: html | ||
<!-- | ||
* Copyright (C) 2024 Scribe | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
--> | ||
""" | ||
|
||
import os | ||
from pathlib import Path | ||
from typing import Optional | ||
|
||
import requests | ||
from rich import print as rprint | ||
from tqdm import tqdm | ||
|
||
from scribe_data.utils import DEFAULT_DUMP_EXPORT_DIR, check_lexeme_dump_prompt_download | ||
from scribe_data.wikidata.wikidata_utils import download_wiki_lexeme_dump | ||
|
||
|
||
def download_wrapper( | ||
wikidata_dump: Optional[str] = None, output_dir: Optional[str] = None | ||
) -> None: | ||
"""Download Wikidata dumps. | ||
|
||
Args: | ||
wikidata_dump: Optional date string in YYYYMMDD format for specific dumps | ||
output_dir: Optional directory path for the downloaded file. Defaults to 'scribe_data_wikidumps' directory | ||
""" | ||
dump_url = download_wiki_lexeme_dump(wikidata_dump or "latest-lexemes") | ||
|
||
if not dump_url: | ||
rprint("[bold red]No dump URL found.[/bold red]") | ||
return False | ||
|
||
try: | ||
output_dir = output_dir or DEFAULT_DUMP_EXPORT_DIR | ||
|
||
os.makedirs(output_dir, exist_ok=True) | ||
|
||
# Don't check for lexeme if date given. | ||
if not wikidata_dump: | ||
if useable_file_dir := check_lexeme_dump_prompt_download(output_dir): | ||
return useable_file_dir | ||
|
||
filename = dump_url.split("/")[-1] | ||
output_path = str(Path(output_dir) / filename) | ||
|
||
user_response = ( | ||
input( | ||
"We'll be using the Wikidata lexeme dump from dumps.wikimedia.org/wikidatawiki/entities." | ||
"Do you want to proceed? (y/n): " | ||
) | ||
.strip() | ||
.lower() | ||
) | ||
|
||
if user_response == "y": | ||
rprint(f"[bold blue]Downloading dump to {output_path}...[/bold blue]") | ||
|
||
response = requests.get(dump_url, stream=True) | ||
total_size = int(response.headers.get("content-length", 0)) | ||
|
||
with open(output_path, "wb") as f: | ||
with tqdm( | ||
total=total_size, unit="iB", unit_scale=True, desc=output_path | ||
) as pbar: | ||
for chunk in response.iter_content(chunk_size=8192): | ||
if chunk: | ||
f.write(chunk) | ||
pbar.update(len(chunk)) | ||
|
||
rprint("[bold green]Download completed successfully![/bold green]") | ||
|
||
return output_path | ||
|
||
else: | ||
return | ||
|
||
except requests.exceptions.RequestException as e: | ||
rprint(f"[bold red]Error downloading dump: {e}[/bold red]") | ||
|
||
except Exception as e: | ||
rprint(f"[bold red]An error occurred: {e}[/bold red]") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Appreciate the doc string here, @axif0, but let's please use the format that's used in the rest of the package as this one here is not going to be rendered in the docs. Updating the contribution guide now with some directions here :)