of     1   

Aovis
#182521290Wednesday, January 27, 2016 10:23 PM GMT

import urllib.request import re try: import urllib.request as urllib2 except ImportError: import urllib2 inbox = urllib.request.urlopen("http://www.roblox.com/my/messages/#!/inbox") messages = inbox.read() regex = (SECRET CONTENT THAT ROBLOX DEEMS UNWORTHY) pattern = re.compile(regex) number = re.findall(pattern,messages) print(number) ------------------------------------------------------------------------------------------------------------ it's supposed to get the number messages I have but it comes back blank expectation: Messages: [1,297] reality: Messages: [ ]
Aovis
#182521370Wednesday, January 27, 2016 10:24 PM GMT

I'd ask on stack overflow but, too embaressing cause ROBLOX is 4 kids m9
MakerModelLua
#182521396Wednesday, January 27, 2016 10:24 PM GMT

wot lang is dis
Aovis
#182521479Wednesday, January 27, 2016 10:26 PM GMT

Python, I've been making a bunch of programs with it for quick access around the ROBLOX to make my life a bit more easier

    of     1