roboherd.cow
CronEntry
dataclass
RoboCow
dataclass
RoboCow(information: roboherd.cow.types.Information, auto_follow: bool = True, skip_profile_update: bool = False, internals: roboherd.cow.RoboCowInternals =
Parameters:
Name | Type | Description | Default |
---|---|---|---|
information
|
Information
|
Information about the cow |
required |
auto_follow
|
bool
|
Whether to automatically accept follow requests |
True
|
skip_profile_update
|
bool
|
When set to True the profile is not updated automatically. Useful when managing a cow from multiple scripts. |
False
|
internals
|
RoboCowInternals
|
Internal data for the cow |
<dynamic>
|
Source code in roboherd/cow/__init__.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
|
action(action='*', activity_type='*')
Adds a handler for an event. Use “*” as a wildcard.
Usage:
cow = Robocow(information=Information(handle="example"))
@cow.action(action="outgoing", activity_type="Follow")
async def handle_outgoing_follow(data):
...
Source code in roboherd/cow/__init__.py
create(**kwargs)
staticmethod
Creates a new cow. We note that
RoboCow.create(name="my name")
is equivalent
to RoboCow(information=Information(name="my name"))
.
incoming(func)
Adds a handler for an incoming message. Usage:
Source code in roboherd/cow/__init__.py
incoming_create(func)
Adds a handler for an incoming activity if the activity is of type_create
Source code in roboherd/cow/__init__.py
run_startup(connection)
async
Runs when the cow is birthed
Source code in roboherd/cow/__init__.py
RoboCowInternals
dataclass
Internal data for the cow
Parameters:
Name | Type | Description | Default |
---|---|---|---|
profile
|
dict | None
|
The profile of the cow, aka as the actor object in ActivityPub |
None
|
actor_id
|
str | None
|
Actor Id of the cow; loaded automatically |
None
|
handlers
|
Handlers
|
Handlers for incoming and outgoing messages, added through annotations |
<roboherd.cow.handlers.Handlers object at 0x7f7f3dc39810>
|
handler_configuration
|
List[HandlerConfiguration]
|
Handler configurations, added through annotations |
<dynamic>
|
cron_entries
|
List[CronEntry]
|
Cron entries, created through annotations |
<dynamic>
|
startup_routine
|
Callable | None
|
|
None
|
base_url
|
str | None
|
|
None
|
Source code in roboherd/cow/__init__.py
const
default_icon = {'mediaType': 'image/png', 'type': 'Image', 'url': 'https://dev.bovine.social/assets/bull-horns.png'}
module-attribute
The default icon to be used
handlers
profile
determine_profile_update(information, profile)
Returns the update for the profile
Source code in roboherd/cow/profile.py
types
Information
Bases: BaseModel
Information about the cow
Parameters:
Name | Type | Description | Default |
---|---|---|---|
type
|
str
|
ActivityPub type of the actor. |
'Service'
|
handle
|
str | None
|
Used as the handle in |
None
|
name
|
str | None
|
The display name of the cow |
None
|
description
|
str | None
|
The description of the cow, used as summary of the actor |
None
|
icon
|
dict
|
The profile image |
{'mediaType': 'image/png', 'type': 'Image', 'url': 'https://dev.bovine.social/assets/bull-horns.png'}
|
frequency
|
str | None
|
Frequency of posting. Is set automatically if cron expressions are used. |
None
|
meta_information
|
MetaInformation
|
Meta information about the cow, such as the source repository |
MetaInformation(source=None, author=None)
|
Source code in roboherd/cow/types.py
MetaInformation
Bases: BaseModel
Meta Information about the bot. This includes information such as the author and the source repository
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source
|
str | None
|
The source repository |
None
|
author
|
str | None
|
The author, often a Fediverse handle |
None
|