Skip to content

Commit

Permalink
Added option to ask for mods.
Browse files Browse the repository at this point in the history
Choose the method u most liked.
  • Loading branch information
JoewAlabel authored Jan 22, 2021
1 parent 8f1dbb5 commit bc3a165
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Joew-SteamWorkshop-ModsInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
from bs4 import BeautifulSoup

# Set your mods here:
modidslist = "1629667379,1629965981,1644646859"
#modidslist = "1629667379,1629965981,1644646859"

# Ask for mods:
print('Enter mods separated by comma:')
modidslist = input()

modids = "".join(modidslist.split()).split(",")
modsfail = []
Expand Down

0 comments on commit bc3a165

Please sign in to comment.