Connect to a RPC tracker Parameters ---------- url : str The url of the host port : int The port to connect to Returns ------- sess : TrackerSession The connected tracker session.
(url, port)
| 550 | |
| 551 | |
| 552 | def connect_tracker(url, port): |
| 553 | """Connect to a RPC tracker |
| 554 | |
| 555 | Parameters |
| 556 | ---------- |
| 557 | url : str |
| 558 | The url of the host |
| 559 | |
| 560 | port : int |
| 561 | The port to connect to |
| 562 | |
| 563 | Returns |
| 564 | ------- |
| 565 | sess : TrackerSession |
| 566 | The connected tracker session. |
| 567 | """ |
| 568 | return TrackerSession((url, port)) |
searching dependent graphs…