"docs/sphinx/requirements.txt" did not exist on "3557ce90f12b635889ccad41ecd11398946c0159"
essays.py 3.91 KB
Newer Older
Baber's avatar
Baber committed
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (c) 2024, NVIDIA CORPORATION.  All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License
Baber's avatar
Baber committed
14
import asyncio
Baber's avatar
Baber committed
15
16
import glob
import os
Baber's avatar
Baber committed
17
from functools import cache
Baber's avatar
Baber committed
18
from typing import Dict
Baber's avatar
Baber committed
19
20

import html2text
Baber's avatar
Baber committed
21
import httpx
Baber's avatar
Baber committed
22
from bs4 import BeautifulSoup
Baber's avatar
Baber committed
23
from tqdm.asyncio import tqdm as async_tqdm
Baber's avatar
Baber committed
24
25


Baber's avatar
cleanup  
Baber committed
26
@cache
Baber's avatar
Baber committed
27
28
29
30
31
32
async def fetch_url(client: httpx.AsyncClient, url: str) -> str:
    response = await client.get(url)
    response.raise_for_status()
    return response.text


Baber's avatar
cleanup  
Baber committed
33
@cache
Baber's avatar
Baber committed
34
35
36
37
async def process_html_essay(
    client: httpx.AsyncClient, url: str, h: html2text.HTML2Text, temp_folder: str
) -> None:
    filename = url.split("/")[-1].replace(".html", ".txt")
Baber's avatar
nit  
Baber committed
38
39
    if os.path.exists(os.path.join(temp_folder, filename)):
        return None
Baber's avatar
Baber committed
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
    try:
        content = await fetch_url(client, url)
        soup = BeautifulSoup(content, "html.parser")
        specific_tag = soup.find("font")
        if specific_tag:
            parsed = h.handle(str(specific_tag))

            with open(
                os.path.join(temp_folder, filename), "w", encoding="utf-8"
            ) as file:
                file.write(parsed)
    except Exception as e:
        print(f"Failed to download {filename}: {str(e)}")


Baber's avatar
cleanup  
Baber committed
55
@cache
Baber's avatar
Baber committed
56
57
58
59
async def process_text_essay(
    client: httpx.AsyncClient, url: str, temp_folder: str
) -> None:
    filename = url.split("/")[-1]
Baber's avatar
nit  
Baber committed
60
61
    if os.path.exists(os.path.join(temp_folder, filename)):
        return None
Baber's avatar
Baber committed
62
63
64
65
66
67
68
69
    try:
        content = await fetch_url(client, url)
        with open(os.path.join(temp_folder, filename), "w", encoding="utf-8") as file:
            file.write(content)
    except Exception as e:
        print(f"Failed to download {filename}: {str(e)}")


Baber's avatar
cleanup  
Baber committed
70
@cache
Baber's avatar
Baber committed
71
async def get_essays() -> Dict[str, str]:
Baber's avatar
Baber committed
72
73
74
75
76
77
78
79
80
81
82
83
    temp_folder_repo = "essay_repo"
    temp_folder_html = "essay_html"
    os.makedirs(temp_folder_repo, exist_ok=True)
    os.makedirs(temp_folder_html, exist_ok=True)

    h = html2text.HTML2Text()
    h.ignore_images = True
    h.ignore_tables = True
    h.escape_all = True
    h.reference_links = False
    h.mark_code = False

Baber's avatar
Baber committed
84
    url_list = "https://raw.githubusercontent.com/NVIDIA/RULER/main/scripts/data/synthetic/json/PaulGrahamEssays_URLs.txt"
Baber's avatar
Baber committed
85

Baber's avatar
Baber committed
86
87
88
89
    async with httpx.AsyncClient(timeout=30.0, follow_redirects=True) as client:
        # Fetch URL list
        content = await fetch_url(client, url_list)
        urls = content.splitlines()
Baber's avatar
Baber committed
90

Baber's avatar
Baber committed
91
92
93
        # Separate HTML and text URLs
        html_urls = [url for url in urls if ".html" in url]
        text_urls = [url for url in urls if ".html" not in url]
Baber's avatar
Baber committed
94

Baber's avatar
Baber committed
95
96
97
98
99
        # Process HTML essays
        html_tasks = [
            process_html_essay(client, url, h, temp_folder_html) for url in html_urls
        ]
        await async_tqdm.gather(*html_tasks, desc="Downloading HTML essays")
Baber's avatar
Baber committed
100

Baber's avatar
Baber committed
101
102
103
104
105
        # Process text essays
        text_tasks = [
            process_text_essay(client, url, temp_folder_repo) for url in text_urls
        ]
        await async_tqdm.gather(*text_tasks, desc="Downloading text essays")
Baber's avatar
Baber committed
106

Baber's avatar
Baber committed
107
    # Collect results
Baber's avatar
Baber committed
108
109
110
    files_repo = sorted(glob.glob(os.path.join(temp_folder_repo, "*.txt")))
    files_html = sorted(glob.glob(os.path.join(temp_folder_html, "*.txt")))

Baber's avatar
Baber committed
111
    # Combine all texts
Baber's avatar
Baber committed
112
113
    text = ""
    for file in files_repo + files_html:
Baber's avatar
Baber committed
114
        with open(file, "r", encoding="utf-8") as f:
Baber's avatar
Baber committed
115
116
117
118
            text += f.read()

    return {"text": text}

Baber's avatar
Baber committed
119

Baber's avatar
Baber committed
120
@cache
Baber's avatar
Baber committed
121
122
123
def get_all_essays() -> Dict[str, str]:
    """Synchronous wrapper for get_essays()"""
    return asyncio.run(get_essays())