How can I convert this to an f-string?
message = '{status} : {method} : {url}'.format(**call_components)
str.format() is usually fine, but if you really want an f-string then it would look like this:
message = f'{call_components["status"]} : {call_components["method"]} : {call_components["url"]}'