From e8511a34b2c6f88963e620bb876966ea9a79a80f Mon Sep 17 00:00:00 2001 From: Aron Radics Date: Mon, 23 Dec 2024 16:36:21 +0100 Subject: [PATCH 1/2] Add url for the torrent object --- ncoreparser/torrent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ncoreparser/torrent.py b/ncoreparser/torrent.py index 079bad1..60b4bdd 100644 --- a/ncoreparser/torrent.py +++ b/ncoreparser/torrent.py @@ -19,6 +19,7 @@ def __init__( "seed": seed, "leech": leech, "download": URLs.DOWNLOAD_LINK.value.format(id=id, key=key), + "url": URLs.DETAIL_PATTERN.value.format(id=id), } self._details.update(params) From cc1e5c331e298af2dac30ccedcee74593cdbc36f Mon Sep 17 00:00:00 2001 From: Aron Radics Date: Mon, 23 Dec 2024 16:37:00 +0100 Subject: [PATCH 2/2] Bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f43070d..8d9bdd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "ncoreparser" -version = "3.1.1" +version = "3.2.0" description = "Package to download from ncore.pro" authors = [ { name="Aron Radics", email="aron.radics.jozsef@gmail.com" }