File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 8
8
import threading
9
9
import time
10
10
from pathlib import Path
11
- from typing import Optional
12
11
13
12
from mitmproxy import options
14
13
from mitmproxy .tools .dump import DumpMaster
@@ -98,12 +97,12 @@ def start(self) -> int:
98
97
def run_proxy () -> None :
99
98
loop = asyncio .new_event_loop ()
100
99
asyncio .set_event_loop (loop )
101
-
100
+
102
101
try :
103
102
proxy = DumpMaster (opts )
104
103
self ._proxy = proxy
105
104
proxy .addons .add (addon )
106
-
105
+
107
106
loop .run_until_complete (proxy .run ())
108
107
except Exception :
109
108
logger .exception ("Error running proxy" )
Original file line number Diff line number Diff line change 30
30
try :
31
31
port = cache .start ()
32
32
print (f"HTTP cache started on port { port } " )
33
-
33
+
34
34
source = get_source (
35
35
"source-pokeapi" ,
36
36
config = {"pokemon_name" : "bulbasaur" },
37
37
source_manifest = True ,
38
38
http_cache = cache ,
39
39
streams = ["pokemon" ],
40
40
)
41
-
41
+
42
42
print ("Checking source connection..." )
43
43
source .check ()
44
44
print ("Source connection successful" )
45
-
45
+
46
46
local_cache = ab .new_local_cache ("poke" )
47
-
47
+
48
48
print ("Reading data from source..." )
49
49
source .read (cache = local_cache )
50
50
print ("Data read successfully" )
51
-
51
+
52
52
finally :
53
53
print ("Stopping HTTP cache..." )
54
54
cache .stop ()
You can’t perform that action at this time.
0 commit comments