Skip to content

A Python client to connect to the popular online collaborative drawing board Our World Of Pixels

License

Notifications You must be signed in to change notification settings

1ttric/owopclient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

owopclient

A Python client to connect to the popular online collaborative drawing board Our World Of Pixels

Example

A simple example that will fetch an area around the origin and then set part of that area to magenta:

from owopclient import owop

client = owop.Client("main")
await client.connect()
area = await client.get((-10, -10, 10, 10))
await client.post((0, 0, 5, 5), (255, 0, 255))
await client.close()

About

A Python client to connect to the popular online collaborative drawing board Our World Of Pixels

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages