pretty easy twocans API wrapper
 
Go to file
John Montagu, the 4th Earl of Sandvich bcf00e1cd7
basic message fetching
2023-10-11 10:04:24 -07:00
src basic message fetching 2023-10-11 10:04:24 -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 basic message fetching 2023-10-11 10:04:24 -07:00
package-lock.json basic message fetching 2023-10-11 10:04:24 -07:00
package.json basic message fetching 2023-10-11 10:04:24 -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.

Example

from pewcans import Client

client = Client("AUTH COOKIE HERE")
res = client.messages.folder_view()
for msg in res.messages:
    print(msg.preview)