Skip to content

Commit 115778b

Browse files
fix: combine scripts and remove duplicate as requested
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
1 parent bfbcff0 commit 115778b

File tree

2 files changed

+10
-60
lines changed

2 files changed

+10
-60
lines changed

examples/run_pokeapi_cached.py

+10-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
from __future__ import annotations
1515

16+
import asyncio
1617
import os
1718
import airbyte as ab
1819
from airbyte import get_source, AirbyteConnectorCache
@@ -27,6 +28,9 @@
2728
serialization_format="native", # Use mitmproxy's native format
2829
)
2930

31+
loop = asyncio.new_event_loop()
32+
asyncio.set_event_loop(loop)
33+
3034
try:
3135
port = cache.start()
3236
print(f"HTTP cache started on port {port}")
@@ -45,9 +49,13 @@
4549

4650
local_cache = ab.new_local_cache("poke")
4751

48-
print("Reading data from source...")
52+
print("First run - making HTTP requests...")
53+
source.read(cache=local_cache)
54+
print("First run completed")
55+
56+
print("Second run - should use cached responses...")
4957
source.read(cache=local_cache)
50-
print("Data read successfully")
58+
print("Second run completed")
5159

5260
finally:
5361
print("Stopping HTTP cache...")

examples/run_pokeapi_cached_fixed.py

-58
This file was deleted.

0 commit comments

Comments
 (0)