feat: add async bulk operations with concurrent execution#6
Merged
franccesco merged 5 commits intomainfrom Jul 29, 2025
Merged
Conversation
- Fix todo creation endpoint for meetings from 'todo/createmeetingtodo' to 'L10/{meeting_id}/todos'
- Fix meeting attendees field mapping (Id → UserId) to match MeetingAttendee model
- Update field mappings for meeting issues to match Issue model structure
- These fixes ensure proper compatibility with the Bloomy API
- Implement create_many method for concurrent goal creation - Add configurable rate limiting with max_concurrent parameter - Return BulkCreateResult with successful and failed operations - Support best-effort execution with detailed error tracking
- Add tests for create_many methods across todos, issues, goals, and meetings - Add tests for get_many method in meetings operations - Test concurrent execution with rate limiting - Test error handling and partial failures - Update existing tests to support new async patterns - Ensure proper field mappings are tested
- Document create_many methods for todos, issues, goals, and meetings - Document get_many method for meetings - Add real-world performance benchmarks showing 77%+ improvements - Provide code examples for all async bulk operations - Include best practices for rate limiting and error handling
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.
Summary
This PR adds async bulk operations to the Bloomy Python SDK, enabling efficient concurrent processing of multiple API requests with configurable rate limiting. Performance benchmarks show 77%+ improvements over sequential operations.
Key Changes
New Features
create_many) for:get_many) for meetingsmax_concurrentparameterBulkCreateResultBug Fixes
todo/createmeetingtodo→L10/{meeting_id}/todosId→UserIdDocumentation
Testing
Performance Impact
Real-world benchmarks show significant improvements:
Breaking Changes
None. All changes are additive and maintain backward compatibility.
🤖 Generated with Claude Code
Co-Authored-By: Claude noreply@anthropic.com