Is there a way to get a players profile description from the roblox website?
There's no ROBLOX api for it, so you'd need to scrape the site. Since I've already written something like this before, here's an example in python.
01 | #!/usr/bin/python |
02 |
03 | import sys |
04 | from termcolor import colored |
05 | from urllib 2 import urlopen |
06 | from bs 4 import BeautifulSoup as bs |
07 |
08 | userid = raw_input( "User id: " ) |
09 |
10 | if len(userid) > 0 and userid.isdigit(): |
11 | url = "https://www.roblox.com/users/{0}" .format(userid) |
12 | url = urlopen(url).read() |
13 |
14 | if len(url) ! = 0 : |
15 | soup = bs(url, 'lxml' ) |