Files
status-python-sdk/utils/image_utils.py
T
Nick Ninov 0491c597f7 create_account: store credentials locally
- Initial documentation with how to run the project
- Store `create_account_and_login` credentials locally so they can be reused when messaging
- Script can be ran with arguments
2026-02-24 21:46:56 +02:00

7 lines
153 B
Python

class ImageCropRect:
def __init__(self, ax=0, ay=0, bx=0, by=0):
self.ax = ax
self.ay = ay
self.bx = bx
self.by = by