Skip to content

deeeepy/poggit-dev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

poggit-icon psf-logo

poggit python API

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!

requirements

  • python 3.x
  • requests
  • bs4

install dependencies:

pip3 install requests bs4

usage

  1. 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.

features

  • search for plugins by name.
  • fetch plugin details: name, author, type, and link.
  • automatically handles CSRF token for secure requests.

example output

[
    {
        "name": "Easy Plugin",
        "link": "https://poggit.pmmp.io/plugin/EasyPlugin",
        "author": "Author Name",
        "type": "Plugin"
    }
]

About

a python API wrapper for poggit dev https://poggit.pmmp.io/ci/recent search & more, without captchas!

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages