Skip to content

Configuration

Sashank edited this page Nov 17, 2023 · 2 revisions

Configuration

Customize the Spam Website Opener program by editing the spam_website_opener.py file. This allows you to adjust various settings according to your preferences.

Adjusting Website List

  1. Open the spam_website_opener.py file in a text editor of your choice.

  2. Locate the sites variable, which contains the list of websites:

    sites = sorted([
        'coderanch.com', 'python.org', 'quora.com', 'nodejs.org', 'github.com',
        'stackoverflow.com', 'stackexchange.com', 'learn-anything.xyz',
        'devrant.com', 'google.com', 'codementor.io', 'codewars.com'
    ])
  3. Modify the list by adding or removing websites as needed.

Adjusting Time Intervals

You can adjust the time intervals between website openings. Find the following code block:

seconds = random.randrange(5, 10)

Modify the range (5, 10) to set the desired time interval in seconds.

Save Changes

After making the necessary adjustments, save the spam_website_opener.py file.

Next Steps

Enjoy configuring the Spam Website Opener to suit your preferences!