Skip to content

Commit

Permalink
release: v2.68.0
Browse files Browse the repository at this point in the history
  • Loading branch information
newt-sc committed Oct 16, 2021
1 parent a5fc13e commit 6ab1184
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* [v2.68.0](https://github.com/a4k-openproject/a4kScrapers/releases/tag/a4kScrapers-2.68.0):
* add bitsearch

* [v2.67.0](https://github.com/a4k-openproject/a4kScrapers/releases/tag/a4kScrapers-2.67.0):
* ignore result title when filtering on eztv_api

Expand Down
2 changes: 1 addition & 1 deletion meta.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"author": "Unknown",
"version":"2.67.0",
"version":"2.68.0",
"name":"a4kScrapers",
"update_directory": "https://github.com/a4k-openproject/a4kScrapers/archive/",
"remote_meta": "https://raw.githubusercontent.com/newt-sc/a4kScrapers/master/meta.json",
Expand Down
1 change: 1 addition & 0 deletions providerModules/a4kScrapers/scrapers.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ def soup_filter(self, response):
response = normalize(response.text)

return (
self._parse_rows(response, row_tag='search-result view-box') + #bitsearch
self._parse_rows(response, row_tag='tgxtablerow') + #torrentgalaxy
self._parse_rows(response, row_tag='<tr') +
self._parse_rows(response, row_tag='<dl') +
Expand Down
6 changes: 6 additions & 0 deletions providerModules/a4kScrapers/urls.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
{ "base": "https://bitlordsearch.com" }
]
},
"bitsearch": {
"search": "/search?q=%s&category=1&subcat=2&sort=seeders",
"domains": [
{ "base": "https://bitsearch.to" }
]
},
"-bitcq": { "search": "", "domains": [{ "base": "" }] },
"bt4g": {
"search": "/movie/search/%s/byseeders/1",
Expand Down
7 changes: 7 additions & 0 deletions providers/a4kScrapers/en/torrent/bitsearch.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# -*- coding: utf-8 -*-

from providerModules.a4kScrapers import core

class sources(core.DefaultSources):
def __init__(self, *args, **kwargs):
super(sources, self).__init__(__name__, *args, **kwargs)

0 comments on commit 6ab1184

Please sign in to comment.