Metadata-Version: 2.1
Name: m3u8-XZ
Version: 0.0.10
Summary: download m3u8 video by m3u8 url or by local m3u8 file
Author: XZ
Author-email: 345841407@qq.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# m3u8-XZ

This is a simple package,it can download video by m3u8.

    pip install m3u8-xz
    
####version 0.0.10 修复了上个版本的重大问题
    
####version 0.0.9 加入 _run_thread_ 启动方法,会在子线程执行

####version 0.0.8 修复一些小问题

####version 0.0.7 加入可选参数：

_headers_：可自定义头部
_path_：可自定义保存文件的绝对路径，
_logger_：可选择是否打印输出，
_print_callback_：打印回调，可通过**kwargs接收指定参数

####version 0.0.3 修复一些小问题

####version 0.0.2 support aes-128 decode,support read local m3u8 file
    
    from m3u8_XZ import m3u8
    # use m3u8 url 通过url
    obj = m3u8(url='https://example.com/index.m3u8', folder='test')
    # use local file 通过本地文件
    # m3u8(m3u8_file='fileName.m3u8', folder='test')
    obj.run()
    

