MCPcopy Index your code
hub / github.com/pyfa-org/Pyfa / delete

Method delete

service/esiAccess.py:314–317  ·  view source on GitHub ↗
(self, ssoChar, endpoint, **kwargs)

Source from the content-addressed store, hash-verified

312 return self._after_request(self._session.post("{}{}?datasource={}".format(self.esi_url, endpoint, self.server_name.lower()), data=json))
313
314 def delete(self, ssoChar, endpoint, **kwargs):
315 self._before_request(ssoChar)
316 endpoint = endpoint.format(**kwargs)
317 return self._after_request(self._session.delete("{}{}?datasource={}".format(self.esi_url, endpoint, self.server_name.lower())))
318
319 # todo: move these off to another class which extends this one. This class should only handle the low level
320 # authentication and

Callers 1

delFittingMethod · 0.95

Calls 2

_before_requestMethod · 0.95
_after_requestMethod · 0.95

Tested by

no test coverage detected