From 114be92f1fe9aba9bc2d8fc7a5204905eaecf193 Mon Sep 17 00:00:00 2001 From: deedy5 <65482418+deedy5@users.noreply.github.com> Date: Fri, 20 Aug 2021 13:00:48 +0300 Subject: [PATCH] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a4027f5..5923e4a 100644 --- a/README.md +++ b/README.md @@ -43,12 +43,15 @@ fake_traffic(country='US', language='en-US") from fake_traffic import fake_traffic fake_traffic(country='US', language='en-US", threads=2, min_wait=1, max_wait=5, debug=True) -""" country = country code ISO 3166-1 Alpha-2 code (https://www.iso.org/obp/ui/), +""" Imitating an Internet user by mimicking popular web traffic (internet traffic generator). + + country = country code ISO 3166-1 Alpha-2 code (https://www.iso.org/obp/ui/), language = country-language code ISO-639 and ISO-3166 (https://www.fincher.org/Utilities/CountryLanguageList.shtml), threads = number of threads (defaults to 1), min_wait = minimal delay between requests (defaults to 1), max_wait = maximum delay between requests (defaults to 30), debug = if True, then print the details of the requests (defaults to False). + """ ``` --- ### Example