Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 433 Bytes

File metadata and controls

17 lines (13 loc) · 433 Bytes

Pyff

Pyff is a very small python wrapper for the Flyff Universe API. As time goes on and the API gets more populated, this library will hopefully follow.

Contributions and pull requests are welcome!

Quick Start

from pyff.flyff import Flyff

flyff = Flyff()
item_ids = [1, 3, 5, 52, 55, 61, 81]
items = flyff.get_items_by_ids(item_ids)
for item in items:
    print(item['name']['en'])