a2 / MessagePack.swift

It's like JSON, but fast and small…and Swift! – msgpack.org[Swift]

Home Page:http://msgpack.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MessagePack.swift hello world

jdevng opened this issue · comments

This is working 'hello world' type code from python that follows message pack conventions, what is the equivalent in this library?

exampleMessage = {
"login": {
"email": email,
"password": password
}
}

MESSAGE = msgpack.packb(exampleMessage, use_bin_type=True)