bittensor.utils.networking#
Utils for handling local network with ip and ports.
Exceptions#
Raised if we cannot attain your external ip from CURL/URLLIB/IPIFY/AWS |
Functions#
Checks CURL/URLLIB/IPIFY/AWS for your external ip. |
|
|
Returns a formatted websocket endpoint url. |
|
Maps an integer to a unique ip-string |
|
Return a formatted ip string |
|
Maps an ip-string to a unique integer. |
|
Returns the ip version (IPV4 or IPV6). |
Module Contents#
- exception bittensor.utils.networking.ExternalIPNotFound[source]#
Bases:
Exception
Raised if we cannot attain your external ip from CURL/URLLIB/IPIFY/AWS
Initialize self. See help(type(self)) for accurate signature.
- bittensor.utils.networking.get_external_ip()[source]#
Checks CURL/URLLIB/IPIFY/AWS for your external ip.
- Returns:
Your routers external facing ip as a string.
- Return type:
external_ip (str)
- Raises:
ExternalIPNotFound(Exception) – Raised if all external ip attempts fail.
- bittensor.utils.networking.get_formatted_ws_endpoint_url(endpoint_url)[source]#
Returns a formatted websocket endpoint url.
- Parameters:
endpoint_url (Optional[str]) – The endpoint url to format.
- Returns:
- The formatted endpoint url. In the form of ws://<endpoint_url> or
wss://<endpoint_url>
- Return type:
formatted_endpoint_url (Optional[str])
Note: The port (or lack thereof) is left unchanged.