https://github.com/stephen-bunn/torvend
A framework and CLI utility for quickly searching public torrent vendors
https://github.com/stephen-bunn/torvend
asynchronous command-line framework python3 search torrent web-scraping
Last synced: about 2 months ago
JSON representation
A framework and CLI utility for quickly searching public torrent vendors
- Host: GitHub
- URL: https://github.com/stephen-bunn/torvend
- Owner: stephen-bunn
- License: mit
- Created: 2017-11-08T18:16:43.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-29T22:42:18.000Z (over 8 years ago)
- Last Synced: 2025-02-01T19:17:57.895Z (about 1 year ago)
- Topics: asynchronous, command-line, framework, python3, search, torrent, web-scraping
- Language: Python
- Homepage:
- Size: 4.69 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
.. image:: https://github.com/stephen-bunn/torvend/raw/master/docs/source/_static/logo.png
:alt: Torvend Logo
:width: 800
:align: center
|
.. image:: https://img.shields.io/pypi/v/torvend.svg
:target: https://pypi.org/project/torvend/
:alt: PyPi Status
.. image:: https://img.shields.io/pypi/pyversions/torvend.svg
:target: https://pypi.org/project/torvend/
:alt: Supported Versions
.. image:: https://img.shields.io/pypi/status/torvend.svg
:target: https://pypi.org/project/torvend/
:alt: Release Status
.. image:: https://img.shields.io/github/last-commit/stephen-bunn/torvend.svg
:target: https://github.com/stephen-bunn/torvend
:alt: Last Commit
.. image:: https://img.shields.io/github/license/stephen-bunn/torvend.svg
:target: https://github.com/stephen-bunn/torvend/blob/master/LICENSE
:alt: License
.. image:: https://readthedocs.org/projects/torvend/badge/?version=latest
:target: http://torvend.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. image:: https://travis-ci.org/stephen-bunn/torvend.svg?branch=master
:target: https://travis-ci.org/stephen-bunn/torvend
:alt: Build Status
.. image:: https://codecov.io/gh/stephen-bunn/torvend/branch/master/graph/badge.svg
:target: https://codecov.io/gh/stephen-bunn/torvend
:alt: Code Coverage
.. image:: https://requires.io/github/stephen-bunn/torvend/requirements.svg?branch=master
:target: https://requires.io/github/stephen-bunn/torvend/requirements/?branch=master
:alt: Requirements Status
.. image:: https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg
:target: https://saythanks.io/to/stephen-bunn
:alt: Say Thanks
|
Command Line
------------
Search for torrents through the command-line...
.. image:: https://github.com/stephen-bunn/torvend/raw/master/docs/source/_static/usage.gif
:alt: Torvend Usage
:width: 800
:align: center
Usage
-----
| Search for torrents in your own applications...
| Read about more complex usage in the `documentation `_.
.. code-block:: python
from torvend.client import (TorvendClient,)
discovered_torrents = []
def torrent_callback(item, **kwargs):
discovered_torrents.append(item)
client = TorvendClient()
client.search('my query', torrent_callback)
print(discovered_torrents)