2 # -*- coding: utf-8 -*-
5 ###################################################################################
9 ###################################################################################
10 from Configs
import Configs
11 from DataUnits
import DataUnits
12 from HttpClient
import HttpClient
13 from HttpServer
import HttpServer
15 from Manipulator
import Manipulator
18 ###################################################################################
21 self
.Logs
= Logs(self
)
22 self
.Configs
= Configs(self
)
23 self
.DataUnits
= DataUnits(self
)
24 self
.HttpClient
= HttpClient(self
)
25 self
.HttpServer
= HttpServer(self
)
26 self
.Manipulator
= Manipulator(self
)
29 self
.HttpServer
.start()
31 ###################################################################################
32 if __name__
== "__main__":
52 TorrentLeecher
= Main()
53 TorrentLeecher
.start()