This commit is contained in:
Love 2023-01-19 12:43:33 +01:00
parent 2dda01e651
commit bef4208351
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
[package] [package]
name = "iptvnator_rs" name = "iptvnator"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"

View File

@ -1,4 +1,4 @@
# Iptvnator_rs # Iptvnator
An iptvclient that is capable of parsing and reading m3uplaylists of essentially arbitrary sizes _blazingly fast_ An iptvclient that is capable of parsing and reading m3uplaylists of essentially arbitrary sizes _blazingly fast_

View File

@ -3,11 +3,11 @@ use std::process::Command;
use std::rc::Rc; use std::rc::Rc;
use colored::Colorize; use colored::Colorize;
use iptvnator_rs::{download_with_progress, setup, M3u8, Parser, Readline}; use iptvnator::{download_with_progress, setup, M3u8, Parser, Readline};
#[tokio::main] #[tokio::main]
async fn main() { async fn main() {
println!("Welcome to iptvnator_rs, the port of my iptvprogram written in python, now in rust BLAZINGLY FAST\n"); println!("Welcome to iptvnator, the port and extension of my previous program pyiptvnator, now in rust BLAZINGLY FAST\n");
println!( println!(
"There will be some options along the way \n {} is for refreshing your iptvfile.\n {} is to quit and save watched feeds\n {} is to download fields\n {} is to perform a new search", "There will be some options along the way \n {} is for refreshing your iptvfile.\n {} is to quit and save watched feeds\n {} is to download fields\n {} is to perform a new search",
"r".bold(),"q".bold(),"d".bold(),"s".bold() "r".bold(),"q".bold(),"d".bold(),"s".bold()