MCPcopy Index your code
hub / github.com/Bitmessage/PyBitmessage / readInbox

Function readInbox

src/message_data_reader.py:19–26  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

17cur = conn.cursor()
18
19def readInbox():
20 print 'Printing everything in inbox table:'
21 item = '''select * from inbox'''
22 parameters = ''
23 cur.execute(item, parameters)
24 output = cur.fetchall()
25 for row in output:
26 print row
27
28def readSent():
29 print 'Printing everything in Sent table:'

Callers 1

Calls 1

executeMethod · 0.80

Tested by

no test coverage detected