Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
.. image:: https://www.repostatus.org/badges/latest/active.svg :target: https://www.repostatus.org/#active :alt: Project Status: Active — The project has reached a stable, usable state and is being actively developed.
.. image:: https://github.com/jwodder/demagnetize/actions/workflows/test.yml/badge.svg :target: https://github.com/jwodder/demagnetize/actions/workflows/test.yml :alt: CI Status
.. image:: https://codecov.io/gh/jwodder/demagnetize/branch/master/graph/badge.svg :target: https://codecov.io/gh/jwodder/demagnetize
.. image:: https://img.shields.io/pypi/pyversions/demagnetize.svg :target: https://pypi.org/project/demagnetize/
.. image:: https://img.shields.io/github/license/jwodder/demagnetize.svg :target: https://opensource.org/licenses/MIT :alt: MIT License
GitHub <https://github.com/jwodder/demagnetize>
_
| PyPI <https://pypi.org/project/demagnetize/>
_
| Issues <https://github.com/jwodder/demagnetize/issues>
_
| Changelog <https://github.com/jwodder/demagnetize/blob/master/CHANGELOG.md>
_
demagnetize
is a Python program for converting one or more BitTorrent
magnet links
_ into .torrent
files by downloading the torrent info from
active peers.
.. _magnet links: https://en.wikipedia.org/wiki/Magnet_URI_scheme
At the moment, demagnetize
only supports basic features of the BitTorrent
protocol. The following notable features are supported:
BEP 6
_)BEP 41
_).. _BEP 6: https://www.bittorrent.org/beps/bep_0006.html .. _BEP 41: https://www.bittorrent.org/beps/bep_0041.html
The following features are not currently supported but are planned, in no particular order:
x.pe
parameters in magnet linksdemagnetize
has also been translated by the author into Rust; you can find
the Rust version at https://github.com/jwodder/demagnetize-rs.
demagnetize
requires Python 3.10 or higher. Just use pip <https://pip.pypa.io>
_ for Python 3 (You have pip, right?) to install it::
python3 -m pip install demagnetize
::
demagnetize [<global options>] <subcommand> ...
The demagnetize
command has two subcommands, get
(for converting a
single magnet link) and batch
(for converting a file of magnet links), both
detailed below.
-l LEVEL, --log-level LEVEL
Set the log level to the given value. Possible values
are "CRITICAL
", "ERROR
", "WARNING
",
"INFO
", "DEBUG
", and "TRACE
" (all
case-insensitive). [default value: INFO
]
demagnetize get
::
demagnetize [<global options>] get [<options>] <magnet-link>
Convert a single magnet link specified on the command line to a .torrent
file. (Note that you will likely have to quote the link in order to prevent it
from being interpreted by the shell.) By default, the file is saved at
{name}.torrent
, where {name}
is replaced by the value of the name
field from the torrent info, but a different path can be set via the
--outfile
option.
Options ^^^^^^^
-o PATH, --outfile PATH
Save the .torrent
file to the given path. The path
may contain a {name}
placeholder, which will be
replaced by the (sanitized) name of the torrent, and/or
a {hash}
placeholder, which will be replaced by the
torrent's info hash in hexadecimal. Specifying -
will cause the torrent to be written to standard
output. [default: {name}.torrent
]
demagnetize batch
::
demagnetize [<global options>] batch [<options>] <file>
Read magnet links from <file>
, one per line (ignoring empty lines and lines
that start with #
), and convert each one to a .torrent
file. By
default, each file is saved at {name}.torrent
, where {name}
is replaced
by the value of the name
field from the torrent info, but a different path
can be set via the --outfile
option.
Options ^^^^^^^
-o PATH, --outfile PATH
Save the .torrent
files to the given path. The
path may contain a {name}
placeholder, which will
be replaced by the (sanitized) name of each torrent,
and/or a {hash}
placeholder, which will be replaced
by each torrent's info hash in hexadecimal. [default:
{name}.torrent
]
FAQs
Convert magnet links to .torrent files
We found that demagnetize demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.