#!/usr/bin/env python
#-*- mode: python -*-
import sys

from spinneret import traffic

base = "http://localhost"
inflight = 10

if len(sys.argv) > 1:
    base = sys.argv[1]
if len(sys.argv) > 2:
    inflight = int(sys.argv[2])


traffic.main(base, "sitemap.yaml", inflight=inflight)
