Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.79 KB | None | 0 0
  1. # Random Banner Image
  2.     import random
  3.  
  4.     banner_image = [
  5.     'https://i.imgur.com/GAW9uq4.jpg', # Replace your image links here
  6.     'https://i.imgur.com/G6JmzmV.jpg',
  7.     'https://i.imgur.com/29K5ZGO.jpg',
  8.     'https://i.imgur.com/qld2gru.jpg',
  9.     'https://i.imgur.com/Oaa5Y8R.jpg',
  10.     'https://i.imgur.com/Kdby2bb.jpg',
  11.     'https://i.imgur.com/VlIsEk2.jpg',
  12.     'https://i.imgur.com/W4nyA4y.jpg',
  13.     'https://i.imgur.com/oJh9AOq.jpg',
  14.     'https://i.imgur.com/PwSWbJG.jpg',
  15.     'https://i.imgur.com/TMICQ7Q.jpg',
  16.     'https://i.imgur.com/SXOb3YN.jpg',
  17.     'https://i.imgur.com/hn1jnZe.jpg',
  18.     'https://i.imgur.com/UivO8wk.jpg'  # Add as few or many as you want
  19.     ]
  20.  
  21.     banner_url = random.choice(banner_image)
  22.  
  23.     # ------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement