#!/usr/bin/env python3 ''' Feed parser with many features from a feed, it supports filtering, subslicing, random picking Beside feeds, it supports picking files from directories ''' import os import logging from argparse import ArgumentParser from subprocess import check_output from collections import OrderedDict import re import urllib.request from urllib.parse import urlparse, unquote import posixpath import random from bisect import bisect from lxml import html import requests def weighted_choice(values, weights): ''' random.choice with weights weights must be integers greater than 0. Their meaning is "relative", that is [1,2,3] is the same as [2,4,6] ''' assert len(values) == len(weights) total = 0 cum_weights = [] for w in weights: total += w cum_weights.append(total) x = random.random() * total i = bisect(cum_weights, x) return values[i] class Audio(object): def __init__(self, url, durata=None): self.url = url if durata is None: durata = get_duration(url.encode('utf-8')) self.durata = durata def __str__(self): return self.url def __repr__(self): return '