#!/usr/bin/python3

import m3u8

m3u8_obj = m3u8.loads('''
#EXTM3U
#EXT-X-TARGETDURATION:10.0
''')

assert m3u8_obj.target_duration == 10.0

