MCPcopy Index your code
hub / github.com/Rushifakami/csfloat_api / get_me

Method get_me

csfloat_client.py:129–138  ·  view source on GitHub ↗
(self, *, raw_response: bool = False)

Source from the content-addressed store, hash-verified

127 return response
128
129 async def get_me(self, *, raw_response: bool = False) -> Optional[Me]:
130 parameters = "/me"
131 method = "GET"
132
133 response = await self._request(method=method, parameters=parameters)
134
135 if raw_response:
136 return response
137
138 return Me(data=response)
139
140 async def get_transactions(self, page: int = 0, limit: int = 10):
141 parameters = f"/me/transactions?page={page}&limit={limit}&order=desc"

Callers

nothing calls this directly

Calls 2

_requestMethod · 0.95
MeClass · 0.85

Tested by

no test coverage detected