Luigi PRO

luigi12345

AI & ML interests

None yet

Recent Activity

updated a collection about 3 hours ago
animation
liked a Space about 5 hours ago
xd11yggy/IDE_Editor_Compiler_Interpreter
updated a Space about 24 hours ago
luigi12345/Auto-IOL
View all activity

Articles

Organizations

None yet

Posts 3

view post
Post
193
Top 20 GitHub Repositories for Autonomous AI Agents in Software Development

Best AI Software Engineer Agents and AI Frameworks and Tools.
Discover the top 20 GitHub repositories for autonomous AI agents in software development. These tools offer features like automated testing, debugging, and codebase management, complete with user-friendly interfaces. Enhance your development workflow with these cutting-edge resources. Read more: https://huggingface.co/blog/luigi12345/ai-autonomous-agents

view post
Post
3505
MinimalScrap
Only Free Dependencies. Save it.It is quite useful uh.


!pip install googlesearch-python requests
from googlesearch import search
import requests
query = "Glaucoma"
for url in search(f"{query} site:nih.gov filetype:pdf", 20):
    if url.endswith(".pdf"):
        with open(url.split("/")[-1], "wb") as f: f.write(requests.get(url).content)
        print("✅" + url.split("/")[-1])
print("Done!")