Space¶
Space's Model¶
Categorize and manage money.
Attributes:
Name | Type | Description |
---|---|---|
name |
Name of the space. |
|
uuid |
Unique identifier of the space. |
|
description |
Description of the space. |
|
exchange_account |
Exchange account of the space. |
|
created_at |
Date of creation of the space. |
Examples:
Create a space:
import django_napse.core.models import NapseSpace, ExchangeAccount
exchange_account: ExchangeAccount = ...
space = NapseSpace.objects.create(
name="Space",
description="Space description",
exchange_account=exchange_account,
)
info ¶
Info documentation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
verbose |
bool
|
Print to console. |
True
|
beacon |
str
|
Indentation for printing. |
''
|