File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## Unreleased
99
10+ ## [ v0.1.6] ( https://github.com/replane-dev/replane-python/releases/tag/v0.1.6 ) - 2025-12-20
11+
1012## [ v0.1.5] ( https://github.com/replane-dev/replane-python/releases/tag/v0.1.5 ) - 2025-12-20
1113
1214## [ v0.1.4] ( https://github.com/replane-dev/replane-python/releases/tag/v0.1.4 ) - 2025-12-20
Original file line number Diff line number Diff line change @@ -21,20 +21,20 @@ from replane import SyncReplaneClient
2121with SyncReplaneClient(
2222 base_url = " https://replane.example.com" ,
2323 sdk_key = " sk_live_..." ,
24- ) as client :
24+ ) as replane :
2525 # Get a simple config value
26- rate_limit = client .get(" rate-limit" )
26+ rate_limit = replane .get(" rate-limit" )
2727 print (f " Rate limit: { rate_limit} " )
2828
2929 # Get with context for override evaluation
30- feature_enabled = client .get(
30+ feature_enabled = replane .get(
3131 " new-feature" ,
3232 context = {" user_id" : " user-123" , " plan" : " premium" },
3333 )
3434 print (f " Feature enabled: { feature_enabled} " )
3535
3636 # Get with fallback default
37- timeout = client .get(" request-timeout" , default = 30 )
37+ timeout = replane .get(" request-timeout" , default = 30 )
3838 print (f " Timeout: { timeout} " )
3939```
4040
You can’t perform that action at this time.
0 commit comments