Open
Description
Hi, I don't seem to be able to perform basic interactions with the simplenote server ... this script used to work some months ago ...
import simplenote
sn = simplenote.Simplenote("[email protected]", "mypassword")
note_list = sn.get_note_list()
print( "note list length: {0:d}".format(len(note_list[0])) )
note list length: 0
sn.add_note({'content':'a new note from python', 'tags': 'scripted'})
(URLError(SSLError(8, '_ssl.c:504: EOF occurred in violation of protocol'),), -1)
did Simplenote.com change their protocol?