pretty easy twocans API wrapper
 
Go to file
John Montagu, the 4th Earl of Sandvich 0ea2058a7c
add notify module
2024-05-16 09:17:12 -07:00
src add notify module 2024-05-16 09:17:12 -07:00
.gitignore basic message fetching 2023-10-11 10:04:24 -07:00
.npmignore basic message fetching 2023-10-11 10:04:24 -07:00
LICENSE Initial commit 2023-10-09 11:55:09 -07:00
README.md update readme 2023-10-17 22:39:49 -07:00
package-lock.json viewing asked questions 2023-10-20 01:24:53 -07:00
package.json viewing asked questions 2023-10-20 01:24:53 -07:00

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);
        }
    }
}