Skip to content

Commit ff093b4

Browse files
committed
simplify example script, switch to docker
1 parent 9f699e6 commit ff093b4

File tree

1 file changed

+11
-19
lines changed

1 file changed

+11
-19
lines changed

examples/run_pokeapi_cached.py

+11-19
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
Path(cache_dir / ".gitignore").write_text("# Ignore all files in this directory\n*")
2525

2626
# Create an HTTP cache
27-
cache = AirbyteConnectorCache(
27+
http_cache = AirbyteConnectorCache(
2828
cache_dir=cache_dir,
2929
mode="read_write",
3030
serialization_format="native", # Use mitmproxy's native format
@@ -33,37 +33,29 @@
3333
loop = asyncio.new_event_loop()
3434
asyncio.set_event_loop(loop)
3535

36-
port = cache.start()
36+
port = http_cache.start()
3737
print(f"HTTP cache started on port {port}")
3838

39-
source = get_source(
40-
"source-pokeapi",
41-
config={"pokemon_name": "bulbasaur"},
42-
source_manifest=True,
43-
streams=["pokemon"],
44-
)
45-
46-
print("Checking source connection...")
47-
source.check()
48-
print("Source connection successful")
49-
50-
local_cache = ab.new_local_cache("poke")
39+
local_cache: ab.DuckDBCache = ab.new_local_cache("poke")
5140

5241
print("First run - making HTTP requests...")
53-
source_with_cache = get_source(
42+
source: ab.Source = get_source(
5443
"source-pokeapi",
5544
config={"pokemon_name": "bulbasaur"},
56-
source_manifest=True,
57-
http_cache=cache,
45+
docker_image=True,
46+
use_host_network=True,
47+
http_cache=http_cache,
5848
streams=["pokemon"],
5949
)
60-
source_with_cache.read(cache=local_cache)
50+
source.check()
51+
print("Source check successful")
52+
source.read(cache=local_cache)
6153
print("First run completed")
6254

6355
print("Second run - should use cached responses...")
6456
source.read(cache=local_cache)
6557
print("Second run completed")
6658

6759
print("Stopping HTTP cache...")
68-
cache.stop()
60+
http_cache.stop()
6961
print("HTTP cache stopped")

0 commit comments

Comments
 (0)