Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getRepo (0.06 seconds)

  1. scripts/people.py

        settings = Settings()
        logging.info(f"Using config: {settings.model_dump_json()}")
        rate_limiter.speed_multiplier = settings.speed_multiplier
        g = Github(settings.github_token.get_secret_value())
        repo = g.get_repo(settings.github_repository)
    
        discussion_nodes = get_discussion_nodes(settings=settings)
        experts_results = get_discussions_experts(discussion_nodes=discussion_nodes)
    
        authors = experts_results.authors
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:51:24 GMT 2026
    - 15K bytes
    - Click Count (0)
  2. scripts/translate.py

        print("Pushing branch")
        subprocess.run(["git", "push", "origin", branch_name], check=True)
        if not commit_in_place:
            print("Creating PR")
            g = Github(github_token)
            gh_repo = g.get_repo(github_repository)
            body = (
                message
                + "\n\nThis PR was created automatically using LLMs."
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 15.8K bytes
    - Click Count (0)
Back to Top