Datasets:
Guillaume Raille
commited on
add a download function
Browse files- main.py +20 -0
- pyproject.toml +3 -1
- uv.lock +91 -0
main.py
CHANGED
@@ -1,4 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
def main():
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
print("Hello from tiny-moliere!")
|
3 |
|
4 |
|
|
|
1 |
+
import httpx
|
2 |
+
|
3 |
+
RAW_PDF_URLS = [
|
4 |
+
"https://www.ebooksgratuits.com/ebooksfrance/moliere-oeuvres_completes_1.pdf",
|
5 |
+
"https://www.ebooksgratuits.com/ebooksfrance/moliere-oeuvres_completes_2.pdf",
|
6 |
+
]
|
7 |
+
|
8 |
+
def download_pdf(url: str, output_path: str) -> None:
|
9 |
+
with httpx.stream("GET", url, follow_redirects=True) as response:
|
10 |
+
response.raise_for_status() # ensure we got a 200 OK
|
11 |
+
with open(output_path, "wb") as f:
|
12 |
+
for chunk in response.iter_bytes():
|
13 |
+
f.write(chunk)
|
14 |
+
|
15 |
def main():
|
16 |
+
# 1. fetch raw data if (not already fetched)
|
17 |
+
|
18 |
+
# fetch from
|
19 |
+
# 2. process data into clean tiny-shakespeare like format
|
20 |
+
|
21 |
+
# 3. save processed data to disk
|
22 |
print("Hello from tiny-moliere!")
|
23 |
|
24 |
|
pyproject.toml
CHANGED
@@ -4,4 +4,6 @@ version = "0.1.0"
|
|
4 |
description = "Add your description here"
|
5 |
readme = "README.md"
|
6 |
requires-python = ">=3.13"
|
7 |
-
dependencies = [
|
|
|
|
|
|
4 |
description = "Add your description here"
|
5 |
readme = "README.md"
|
6 |
requires-python = ">=3.13"
|
7 |
+
dependencies = [
|
8 |
+
"httpx>=0.28.1",
|
9 |
+
]
|
uv.lock
ADDED
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
version = 1
|
2 |
+
revision = 1
|
3 |
+
requires-python = ">=3.13"
|
4 |
+
|
5 |
+
[[package]]
|
6 |
+
name = "anyio"
|
7 |
+
version = "4.10.0"
|
8 |
+
source = { registry = "https://pypi.org/simple" }
|
9 |
+
dependencies = [
|
10 |
+
{ name = "idna" },
|
11 |
+
{ name = "sniffio" },
|
12 |
+
]
|
13 |
+
sdist = { url = "https://files.pythonhosted.org/packages/f1/b4/636b3b65173d3ce9a38ef5f0522789614e590dab6a8d505340a4efe4c567/anyio-4.10.0.tar.gz", hash = "sha256:3f3fae35c96039744587aa5b8371e7e8e603c0702999535961dd336026973ba6", size = 213252 }
|
14 |
+
wheels = [
|
15 |
+
{ url = "https://files.pythonhosted.org/packages/6f/12/e5e0282d673bb9746bacfb6e2dba8719989d3660cdb2ea79aee9a9651afb/anyio-4.10.0-py3-none-any.whl", hash = "sha256:60e474ac86736bbfd6f210f7a61218939c318f43f9972497381f1c5e930ed3d1", size = 107213 },
|
16 |
+
]
|
17 |
+
|
18 |
+
[[package]]
|
19 |
+
name = "certifi"
|
20 |
+
version = "2025.8.3"
|
21 |
+
source = { registry = "https://pypi.org/simple" }
|
22 |
+
sdist = { url = "https://files.pythonhosted.org/packages/dc/67/960ebe6bf230a96cda2e0abcf73af550ec4f090005363542f0765df162e0/certifi-2025.8.3.tar.gz", hash = "sha256:e564105f78ded564e3ae7c923924435e1daa7463faeab5bb932bc53ffae63407", size = 162386 }
|
23 |
+
wheels = [
|
24 |
+
{ url = "https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl", hash = "sha256:f6c12493cfb1b06ba2ff328595af9350c65d6644968e5d3a2ffd78699af217a5", size = 161216 },
|
25 |
+
]
|
26 |
+
|
27 |
+
[[package]]
|
28 |
+
name = "h11"
|
29 |
+
version = "0.16.0"
|
30 |
+
source = { registry = "https://pypi.org/simple" }
|
31 |
+
sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250 }
|
32 |
+
wheels = [
|
33 |
+
{ url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515 },
|
34 |
+
]
|
35 |
+
|
36 |
+
[[package]]
|
37 |
+
name = "httpcore"
|
38 |
+
version = "1.0.9"
|
39 |
+
source = { registry = "https://pypi.org/simple" }
|
40 |
+
dependencies = [
|
41 |
+
{ name = "certifi" },
|
42 |
+
{ name = "h11" },
|
43 |
+
]
|
44 |
+
sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484 }
|
45 |
+
wheels = [
|
46 |
+
{ url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784 },
|
47 |
+
]
|
48 |
+
|
49 |
+
[[package]]
|
50 |
+
name = "httpx"
|
51 |
+
version = "0.28.1"
|
52 |
+
source = { registry = "https://pypi.org/simple" }
|
53 |
+
dependencies = [
|
54 |
+
{ name = "anyio" },
|
55 |
+
{ name = "certifi" },
|
56 |
+
{ name = "httpcore" },
|
57 |
+
{ name = "idna" },
|
58 |
+
]
|
59 |
+
sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406 }
|
60 |
+
wheels = [
|
61 |
+
{ url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517 },
|
62 |
+
]
|
63 |
+
|
64 |
+
[[package]]
|
65 |
+
name = "idna"
|
66 |
+
version = "3.10"
|
67 |
+
source = { registry = "https://pypi.org/simple" }
|
68 |
+
sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 }
|
69 |
+
wheels = [
|
70 |
+
{ url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 },
|
71 |
+
]
|
72 |
+
|
73 |
+
[[package]]
|
74 |
+
name = "sniffio"
|
75 |
+
version = "1.3.1"
|
76 |
+
source = { registry = "https://pypi.org/simple" }
|
77 |
+
sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372 }
|
78 |
+
wheels = [
|
79 |
+
{ url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235 },
|
80 |
+
]
|
81 |
+
|
82 |
+
[[package]]
|
83 |
+
name = "tiny-moliere"
|
84 |
+
version = "0.1.0"
|
85 |
+
source = { virtual = "." }
|
86 |
+
dependencies = [
|
87 |
+
{ name = "httpx" },
|
88 |
+
]
|
89 |
+
|
90 |
+
[package.metadata]
|
91 |
+
requires-dist = [{ name = "httpx", specifier = ">=0.28.1" }]
|