From 404d1b161ec821fc60a98419ef1ecfd675615041 Mon Sep 17 00:00:00 2001 From: Kevin Date: Sun, 19 Nov 2017 00:34:22 +0100 Subject: [PATCH 1/3] Added codecov and travis build status in readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index db9f282..a58a033 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # Torrent Search [![PyVersion](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/) +[![Build Status](https://travis-ci.org/KevinMidboe/torrent_search.svg?branch=master)](https://travis-ci.org/KevinMidboe/torrent_search) +[![codecov](https://codecov.io/gh/KevinMidboe/torrent_search/branch/master/graph/badge.svg)](https://codecov.io/gh/KevinMidboe/torrent_search) [![license](https://img.shields.io/github/license/mashape/apistatus.svg)](LICENSE) This is one of our ways we index torrents. We use jackett's torznab indexing to seach for multiple indexers at once. From 8f3add3d9eaafb94a043d3a0c644a6c3289f29aa Mon Sep 17 00:00:00 2001 From: Kevin Date: Sun, 19 Nov 2017 17:04:42 +0100 Subject: [PATCH 2/3] Added Idea section to readme --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index a58a033..5bf33b5 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,11 @@ [![codecov](https://codecov.io/gh/KevinMidboe/torrent_search/branch/master/graph/badge.svg)](https://codecov.io/gh/KevinMidboe/torrent_search) [![license](https://img.shields.io/github/license/mashape/apistatus.svg)](LICENSE) +## Idea +The idea behind this project is to create a modular torrent searcher/indexer in python. Currently we have the option to search for two sites, thepiratebay and with jackett. To add more sites one only needs to create a scraper script for a specific service, and from there create torrent class objects that are returned back to the search script. If the new site needs specific configuration values this can be set in the config.ini file and needs to be imported in the site selector in search.py. + +If you have a site you want to add support to please contact me or fork this repository and create a pull request! If there are any other questions please don't hesitate to ask or add to this project. + This is one of our ways we index torrents. We use jackett's torznab indexing to seach for multiple indexers at once. ## Table of Contents From 11aa1a095ea59235cb771d08124afc0736c39790 Mon Sep 17 00:00:00 2001 From: Kevin Date: Sun, 19 Nov 2017 17:05:12 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 5bf33b5..14c7320 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,6 @@ The idea behind this project is to create a modular torrent searcher/indexer in If you have a site you want to add support to please contact me or fork this repository and create a pull request! If there are any other questions please don't hesitate to ask or add to this project. -This is one of our ways we index torrents. We use jackett's torznab indexing to seach for multiple indexers at once. - ## Table of Contents * [Setup a Virtual Environment](#setup_a_virtual_environment)