a python wrapper for poggit dev https://poggit.pmmp.io/ci/recent search by name and retrieve details such as the plugin's name, author, type, and link, without captchas! PS: user-agent is NOT needed!
- python 3.x
requests
bs4
install dependencies:
pip3 install requests bs4
-
search in dev plugins by name:
poggit = PoggitAPI() plugins = poggit.get_dev_builds_by_name('easy') print(plugins)
this will search for plugins with the keyword "easy" and print their details.
- search for plugins by name.
- fetch plugin details: name, author, type, and link.
- automatically handles CSRF token for secure requests.
[
{
"name": "Easy Plugin",
"link": "https://poggit.pmmp.io/plugin/EasyPlugin",
"author": "Author Name",
"type": "Plugin"
}
]