mirror of
https://github.com/status-im/status-python-sdk.git
synced 2026-08-30 21:51:14 +00:00
- 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
7 lines
153 B
Python
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
|