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
| #!/usr/bin/env python3 | |
| """ | |
| Simplified script to create Devin sessions for multiple repositories. | |
| Retrieves and saves structured outputs to local files. | |
| Dependencies: httpx and python-dotenv | |
| pip install httpx python-dotenv | |
| """ | |
| import os |
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
| #!/usr/bin/env python3 | |
| """ | |
| Super simple script to run Devin on multiple repos. | |
| Just a for loop - no parallelism needed since sessions are non-blocking! | |
| pip install httpx python-dotenv | |
| """ | |
| import os | |
| import httpx | |
| from dotenv import load_dotenv |