File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 29
29
try :
30
30
port = cache .start ()
31
31
print (f"HTTP cache started on port { port } " )
32
-
32
+
33
33
source = get_source (
34
34
"source-pokeapi" ,
35
35
config = {"pokemon_name" : "bulbasaur" },
36
36
source_manifest = True ,
37
37
http_cache = cache ,
38
38
streams = ["pokemon" ],
39
39
)
40
-
40
+
41
41
print ("Checking source connection..." )
42
42
source .check ()
43
43
print ("Source connection successful" )
44
-
44
+
45
45
local_cache = ab .new_local_cache ("poke" )
46
-
46
+
47
47
print ("First run - making HTTP requests..." )
48
48
source .read (cache = local_cache )
49
49
print ("First run completed" )
50
-
50
+
51
51
print ("Second run - should use cached responses..." )
52
52
source .read (cache = local_cache )
53
53
print ("Second run completed" )
54
-
54
+
55
55
finally :
56
56
print ("Stopping HTTP cache..." )
57
57
cache .stop ()
You can’t perform that action at this time.
0 commit comments