pretty easy twocans API wrapper
 
Go to file
John Montagu, the 4th Earl of Sandvich d275848536
implemented most message api functions
2023-10-14 11:51:02 -07:00
src implemented most message api functions 2023-10-14 11:51:02 -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 implemented most message api functions 2023-10-14 11:51:02 -07:00
package-lock.json implemented most message api functions 2023-10-14 11:51:02 -07:00
package.json implemented most message api functions 2023-10-14 11:51:02 -07:00

README.md

Pewcans

Pretty Easy Wrapper for Two Cans & String API 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 pewcans 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);
        }
    }
}