Skip to content

Commit e39c8e1

Browse files
authored
Added Pipocas.tv subtitle provider
1 parent 0374b9f commit e39c8e1

5 files changed

Lines changed: 417 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ If you need something that is not already part of Bazarr, feel free to create a
7070
- Nekur
7171
- OpenSubtitles.com
7272
- OpenSubtitles.org (VIP users only)
73+
- Pipocas.tv
7374
- Podnapisi
7475
- RegieLive
7576
- Sous-Titres.eu

bazarr/app/config.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,6 +364,10 @@ def check_parser_binary(value):
364364
Validator('legendasnet.username', must_exist=True, default='', is_type_of=str, cast=str),
365365
Validator('legendasnet.password', must_exist=True, default='', is_type_of=str, cast=str),
366366

367+
# pipocas section
368+
Validator('pipocas.username', must_exist=True, default='', is_type_of=str, cast=str),
369+
Validator('pipocas.password', must_exist=True, default='', is_type_of=str, cast=str),
370+
367371
# ktuvit section
368372
Validator('ktuvit.email', must_exist=True, default='', is_type_of=str),
369373
Validator('ktuvit.hashed_password', must_exist=True, default='', is_type_of=str, cast=str),

bazarr/app/get_providers.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,10 @@ def get_providers_auth():
267267
'username': settings.legendasnet.username,
268268
'password': settings.legendasnet.password,
269269
},
270+
'pipocas': {
271+
'username': settings.pipocas.username,
272+
'password': settings.pipocas.password,
273+
},
270274
'xsubs': {
271275
'username': settings.xsubs.username,
272276
'password': settings.xsubs.password,

0 commit comments

Comments
 (0)