MCPcopy
hub / github.com/beetbox/beets / get

Method get

beetsplug/_utils/requests.py:213–215  ·  view source on GitHub ↗

Perform HTTP GET request with automatic error handling.

(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

211 return self.session.request(*args, **kwargs)
212
213 def get(self, *args, **kwargs) -> requests.Response:
214 """Perform HTTP GET request with automatic error handling."""
215 return self.request("get", *args, **kwargs)
216
217 def put(self, *args, **kwargs) -> requests.Response:
218 """Perform HTTP PUT request with automatic error handling."""

Callers 15

get_jsonMethod · 0.95
sync_from_sourceMethod · 0.45
get_itemsFunction · 0.45
process_trackFunction · 0.45
__post_init__Method · 0.45
_browseMethod · 0.45
get_artistMethod · 0.45
from_configMethod · 0.45
_tokenfileMethod · 0.45
get_album_infoMethod · 0.45
select_cover_artMethod · 0.45

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected