Ubuntu Pastebin

Paste from Bram at Mon, 9 May 2016 11:06:20 +0000

Download as text
1
2
3
4
5
6
7
8
9
def WriteData(module,data):
	with open('var/write/' + module + '.rbx', 'ab+') as file:
		file.write(data)
		
def ReadData(module):
	with open('var/read/' + module + '.rbx', 'ab+') as file:
		data = file.read()
		file.truncate(0)
	return data
Download as text