chronulus_core.types.attribute
Image
Bases: BaseModel
Attribute to upload an image from base64 encoded string
The image should be provided as a base64 encoded string and the PIL image type specified
Parameters:
Name | Type | Description | Default |
---|---|---|---|
type
|
str
|
The PIL image type, e.g., PNG, JPEG, etc. |
required |
data
|
str
|
The base64 encoded image string |
required |
Attributes:
Name | Type | Description |
---|---|---|
type |
str
|
The PIL image type, e.g., PNG, JPEG, etc. |
data |
str
|
The base64 encoded image string |
Source code in src2/chronulus_core/types/attribute.py
ImageFromBytes
Bases: BaseModel
Attribute to upload an image from bytes
The image should be provided in raw bytes and the PIL image type specified
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image_bytes
|
bytes
|
raw bytes of the image |
required |
type
|
str
|
The PIL image type, e.g., PNG, JPEG, etc. |
required |
Attributes:
Name | Type | Description |
---|---|---|
image_bytes |
bytes
|
raw bytes of the image |
type |
str
|
The PIL image type, e.g., PNG, JPEG, etc. |
data |
Optional[str]
|
The base64 encoded image string |
Source code in src2/chronulus_core/types/attribute.py
ImageFromFile
Bases: BaseModel
Attribute to upload an image from a local file
The image should be accessible in your local file system by the client
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file_path
|
str
|
Path to image file, e.g., '/path/to/image.jpg' |
required |
type
|
Optional[str]
|
The PIL image type, e.g., PNG, JPEG, etc. |
required |
Attributes:
Name | Type | Description |
---|---|---|
file_path |
str
|
Path to image file, e.g., '/path/to/image.jpg' |
type |
Optional[str]
|
The PIL image type, e.g., PNG, JPEG, etc. |
data |
Optional[str]
|
The base64 encoded image string |
Source code in src2/chronulus_core/types/attribute.py
ImageFromUrl
Bases: BaseModel
Attribute to fetch an image from a specified remote URL
The remote URL should be publicly accessible otherwise our systems will fail to retrieve it.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url
|
str
|
URL of the remote image |
required |
type
|
Optional[str]
|
The PIL image type, e.g., PNG, JPEG, etc. |
required |
Attributes:
Name | Type | Description |
---|---|---|
url |
str
|
URL of the remote image |
type |
Optional[str]
|
The PIL image type, e.g., PNG, JPEG, etc. |