Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for complete TV show seasons, without episode numbering #32

Open
Kihltech opened this issue Aug 14, 2020 · 0 comments
Open

Comments

@Kihltech
Copy link

The following example does not find the season, for example when a complete season is given without episode numbering in the title:

friends.s02.720p.bluray-sujaidr

In my limited testing, changing the regex in patterns.py in the following way outputs the season only:
from
('season', '(s?([0-9]{1,2}))[ex]')
to
('season', '(s?([0-9]{1,2}))')

But I can clearly see cases where it doesn't work and I have also for my usage added a new keyword, although there are
some redundancy... (Only change is forcing s as a prefix to the season number:
('complete_season', '(s([0-9]{1,2}))')

Thanks for the great tool by the way!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant