Update boto3 code example in fork buckets blog post#294
Open
katieschilling wants to merge 2 commits intomainfrom
Open
Update boto3 code example in fork buckets blog post#294katieschilling wants to merge 2 commits intomainfrom
katieschilling wants to merge 2 commits intomainfrom
Conversation
- Improve boto3 tab to use tigris-boto3-ext package properly - Add pip install command and proper imports - Update endpoint URL to t3.storage.tigris.dev - Show complete workflow with create_snapshot_bucket, create_snapshot, and create_fork - Maintain standard boto3 operations examples - Fix variable reference (s3 -> s3_client)
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
ovaistariq
reviewed
Oct 17, 2025
| ``` | ||
|
|
||
| </TabItem> | ||
| <TabItem value="boto3" label="Python (boto3)"> |
Contributor
There was a problem hiding this comment.
Replace the python tab with this one?
| <TabItem value="boto3" label="Python (boto3)"> | ||
| ```python | ||
| # Install the boto3 extension | ||
| pip install tigris-boto3-ext |
Contributor
There was a problem hiding this comment.
This needs to be outside the python code block into its own shell block
Contributor
Author
There was a problem hiding this comment.
It's intentionally in the tabbed view so it is alongside the other code examples. I added a "In your terminal, install..." so it's more clear.
Contributor
There was a problem hiding this comment.
The code is not quickly copy-pastable then. Because copying it using the shortcut will end up copying the pip command as well.
Clarified installation instruction for boto3 extension.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updates the boto3 code example with proper tigris-boto3-ext usage, correct endpoint URL, and complete workflow implementation.