John Montagu, the 4th Earl of Sandvich 0ea2058a7c | ||
---|---|---|
src | ||
.gitignore | ||
.npmignore | ||
LICENSE | ||
README.md | ||
package-lock.json | ||
package.json |
README.md
Pecans
Pretty Easy Two Cans & String API wrapper for version 1.68.
Typescript module that can also be used in Python, .NET, and Java using jsii. Requires node to be installed to use the language bindings.
Requirements
node
Python Example
from pecans import Client
client = Client("AUTH COOKIE HERE")
res = client.messages.folder_view()
for msg in res.messages:
print(msg.preview)
C# Example
public class Program
{
public static void Main(string[] args)
{
var client = new Pecans.Client("AUTH COOKIE HERE");
var res = client.Messages.FolderView();
foreach (var msg in res.Messages)
{
Console.WriteLine(msg.Preview);
}
}
}