lockwooddev / python-wowapi

A client library for interacting with the World of Warcraft Community, Game Data and Profile API's

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Getting guild members

MotherGinger opened this issue · comments

It doesn't look like there is a method for getting guild members e.g. WowApi.get_guild_members()

I am able to make this request manually, however it would be nice to keep all my calls contained to your module if possible.

If I get some time maybe I can submit a PR if that is faster.

Great module btw!

Try calling it like this:

WowApi.get_guild_profile('eu', 'khadgar', 'bestguildever', fields='members')

Some endpoints have a fields parameter that will get you extra data.

Thank you for using my library!

Let me know if this works for you.