Tags
toggl_api.TagEndpoint
¶
Bases: TogglCachedEndpoint[TogglTag]
Specific endpoints for retrieving and modifying tags.
Examples:
>>> tag_endpoint = TagEndpoint(21341214, BasicAuth(...), JSONCache(Path("cache")))
>>> tag_endpoint.add("Eucalyptus")
TogglTag(213123132, "Eucalyptus")
>>> tag_endpoint.query(TogglQuery("name", "Eucalyptus"))
[TogglTag(213123132, "Eucalyptus")]
Parameters:
-
workspace_id
(int | TogglWorkspace
) –The workspace the tags belong to.
-
auth
(BasicAuth
) –Authentication for the client.
-
cache
(TogglCache[TogglTag]
) –Cache object where tags are stored.
-
timeout
(int
, default:10
) –How long it takes for the client to timeout. Keyword Only. Defaults to 10 seconds.
-
re_raise
(bool
, default:False
) –Whether to raise all HTTPStatusError errors and not handle them internally. Keyword Only.
-
retries
(int
, default:3
) –Max retries to attempt if the server returns a 5xx status_code. Has no effect if re_raise is
True
. Keyword Only
Source code in toggl_api/tag.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 |
|
collect(*, refresh: bool = False) -> list[TogglTag]
¶
Gather all tags.
Raises:
-
HTTPStatusError
–If any issue happens with the Toggl API.
Returns:
-
list[TogglTag]
–A list of tags collected from the API or local cache.
Source code in toggl_api/tag.py
107 108 109 110 111 112 113 114 115 116 117 118 |
|
add(name: str) -> TogglTag
¶
Create a new tag.
This endpoint always hit the external API in order to keep tags consistent.
Parameters:
-
name
(str
) –The name of the new tag.
Raises:
-
NamingError
–IF the tag name is empty.
-
HTTPStatusError
–If a tag with the same name exists or any other none ok status code is returned.
Returns:
-
TogglTag
–The newly created tag.
Source code in toggl_api/tag.py
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 |
|
edit(tag: TogglTag | int, name: Optional[str] = None) -> TogglTag
¶
Sets the name of the tag based on the tag object.
This endpoint always hit the external API in order to keep tags consistent.
Examples:
>>> tag = Tag(213123132, "Eucalyptus")
>>> tag_endpoint.edit(tag)
TogglTag(213123132, "Eucalyptus")
>>> tag_endpoint.edit(213123132, "Eucalyptus")
TogglTag(213123132, "Eucalyptus")
Parameters:
-
tag
(TogglTag | int
) –TogglTag or integer as the id. Currently can accept the tag as the 'name' input as well.
-
name
(Optional[str]
, default:None
) –New name for the tag. Will become required in the next major version.
Raises:
-
NamingError
–If the name is not at the minimum length.
-
HTTPStatusError
–If any issue happens with the Toggl API.
Returns:
-
TogglTag
–The edited tag.
Source code in toggl_api/tag.py
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 |
|
delete(tag: TogglTag | int) -> None
¶
Deletes a tag based on its ID or model.
This endpoint always hit the external API in order to keep tags consistent.
Parameters:
-
tag
(TogglTag | int
) –The tag to delete. Either the id or model.
Raises:
-
HTTPStatusError
–For anything thats not an '2xx' or '404' code.
Source code in toggl_api/tag.py
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
|