INNER CODE UNIT · Python

search_new_tools

collabnix/kubetools · scripts/discover_tools.py:33

    def search_new_tools(self, days_back=7):
        """Search for new Kubernetes tools on GitHub"""
        since = (datetime.now() - timedelta(days=days_back)).strftime('%Y-%m-%d')
        
        search_queries = [
            f"kubernetes created:>{since} stars:>5",
            f"kubectl plugin created:>{since} stars:>3",
            f"topic:kubernetes created:>{since} stars:>3",
        ]
        
        discovered_tools = []
        
        for query in search_queries:
            print(f"🔍 Searching: {query}")
            
            try:
                url = f"https://api.github.com/search/repositories"
                params = {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…