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

Additional features #2

Open
wants to merge 8 commits into
base: main
Choose a base branch
from

Conversation

HunterSThomp
Copy link

@HunterSThomp HunterSThomp commented Jan 24, 2025

Pull Request

Description

Adds additional features to the script, includes update to README for find-iptv-channels-details.md

Type of change

  • Implementation of Try/Catch to handle CTRL+C when writing to CSV. This will, if the --save flag is ticked, allow the user to CTLR+C at any time, and not lose their data.

  • Removed specified name of CSV file // Now uses category name, channel name, or 'Full' if neither are specified with the formatted time to never overwrite existing/previous files.

  • Implementation of --formatname // This allows for the name and resolution to be incorporated with FHD, HD, and SD support.

  • Implementation of --delay // General 5 sec delay between requests to ensure no rate limiting, especially if going through IPTVEditor with customized categories.

  • Bug fix (non-breaking change which fixes an issue)

  • New feature (non-breaking change which adds functionality)

  • Breaking change (fix or feature that would cause existing functionality to not work as expected)

  • Documentation update (non-breaking change; modified files are limited to the documentations)

  • Technical debt (a code change that does not fix a bug or add a feature but makes something clearer for devs)

  • Other (provide details below)

@Skates1616
Copy link

Too make this edit work, I had to add include the time module:

import time

And then replace:

if args.delay: t.sleep(5)

With:

if args.delay: time.sleep(5)

@Skates1616
Copy link

Also one more comment, the formatname auto defaults to SD even though the connection errored out (Resolution = N/AxN/A).

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

Successfully merging this pull request may close these issues.

3 participants