Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Internet traffic generator. Utilizes real-time google search trends by specified parameters.
pip install -U fake_traffic
Install chromium browser with dependencies
playwright install --with-deps chromium
fake_traffic -h
CLI examples:
# user located in Austria, who speaks German, using comma separated keywords.
fake_traffic -c at -l de-at -k "Olympiade, Medaille, Beste Leistung"
# user located in Turkey, who speaks Kurdish, using google trends.
fake_traffic -c tr -l ku-tr
# save logs into 'fake_traffic.log'
fake_traffic -c ru -l ru-ru -lf
# use none-headless mode
fake_traffic -c en -l en-us -nh
# limit the number of tabs in the browser to 2
fake_traffic -c en -l en-us -t 2
# add an random delay (30-120 seconds) between requests
fake_traffic -c en -l en-us -t 1 -dmin 30 -dmax 120
from fake_traffic import FakeTraffic
FakeTraffic(country="US", language="en-US").crawl()
from fake_traffic import FakeTraffic
ft = FakeTraffic(country="US", language="en-US", category="h", headless=True)
"""Internet traffic generator. Utilizes real-time google search trends by specified parameters.
country (str): Country code ISO 3166-1 Alpha-2 code (https://www.iso.org/obp/ui/), Defaults to "US".
language (str): Country-language code ISO-639 and ISO-3166 (https://www.fincher.org/Utilities/CountryLanguageList.shtml). Defaults to "en-US".
keywords (str | None): Comma separated queries for Google searches. If not specified, Google trending is used. Defaults to None.
headless (bool): Whether to run the browser in headless mode. Defaults to True.
tabs (int): Limit the number of tabs in browser. Defaults to 3.
delay_min (float | None): Minimum delay between requests in seconds. Defaults to None.
delay_max (float | None): Maximum delay between requests in seconds. Defaults to None.
"""
ft.crawl()
Using realtime search trends of a user located in Turkey, who speaks Kurdish
Find Turkey country code (ISO 3166-1 Alpha-2 code):
Find Turkey country-language code (ISO-639 and ISO-3166):
Starting in none-headless mode:
from fake_traffic import FakeTraffic
ft = FakeTraffic(country="TR", language="ku-TR", keywords=None, headless=False)
ft.crawl()
P.S. you can select language from other country. For example, such combinations are also correct:
FakeTraffic(country="TR", language="ar-TR").crawl()
FakeTraffic(country="US", language="he-IL").crawl()
FakeTraffic(country="DE", language="hi-IN").crawl()
Country | Language | Function |
---|---|---|
France | French | FakeTraffic(country="FR", language="fr-FR") |
Germany | German | FakeTraffic(country="DE", language="de-DE", keywords="Audi") |
India | English | FakeTraffic(country="IN", language="en-IN") |
India | Hindi | FakeTraffic(country="IN", language="hi-IN") |
Russia | English | FakeTraffic(country="RU", language="en-US", headless=False) |
Russia | Russian | FakeTraffic(country="RU", language="ru-RU") |
Brazil | Portuguese | FakeTraffic(country="BR", language="pt-BR") |
United Kingdom | English | FakeTraffic(country="GB", language="en-GB") |
United States | English | FakeTraffic(country="US", language="en-US", tabs=4) |
United States | Hebrew Israel | FakeTraffic(country="US", language="he-IL") |
FAQs
Internet traffic generator.
We found that fake-traffic demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.