Giter Club home page Giter Club logo

pywmapi's Introduction

pywmapi

github action packaging test badge pypi package version badge python version badge license badge star badge

PYthon Warframe Market API(pywmapi)

πŸ”₯ API for warframe market, implemented in Python.

"Thank you tinsuit, a fine trade. Transaction complete, haha!" -- Maroo

For now, the implemented function is listed below:

  • auth
    • βœ… sign in
    • πŸ†– register
    • πŸ†– restore password
  • profile
    • βœ… get current user's profile
    • πŸ”² manage current user profile
    • βœ… get a user's profile
    • πŸ”² get all of a user's achievements
    • πŸ”² get all of a user's reviews
    • βœ… set current user's online/offline status
  • items
    • βœ… list all tradable items
    • βœ… get info about an item
  • statistics
    • βœ… get statistics of an item
    • πŸ”² get global market statistics
  • orders
    • βœ… get orders of a single item
    • πŸ”² get orders for the last 4 hours
    • βœ… update a single order on the current profile
    • βœ… delete a single order on the current profile
    • βœ… add a new order for the current profile
    • πŸ”² get user's sale statistics(closed orders)
    • βœ… get all of a user's orders
  • liches
    • βœ… list all lich weapons
    • βœ… list all lich ephemeras
    • βœ… list all lich quirks
  • rivens
    • βœ… list all riven items
    • βœ… get a list of riven attributes
  • misc
    • πŸ”² get a list of all known game locations
    • πŸ”² get a list of all known npcs
    • πŸ”² get a list of all known missions
  • auctions
    • βœ… create auction ⚠️
    • πŸ”² get a list of riven auctions by given search params
    • πŸ”² get a list of lich auctions by given search params
  • auction entry️
    • πŸ”² get info about auction by auction id
    • πŸ”² get auction bids by auction id

Symbols:

  • βœ…: implemented
  • πŸ†–: unavailable due to some intractable problem
  • πŸ”²: not implemented yet
  • ⚠️: experimental and unstable

There are more APIs that are not recorded in the official documentation. Once all the above APIs are done, we would get on these undocumented APIs ASAP.

According to the official API documentation, there's a limit on the API that could only be called 3 times per sec. Otherwise, the request may be blocked by the cloudflare.

Installation

pip install pywmapi

The version of Python MUST >= 3.7 since dataclasses is used.

Guidance

package of pywmapi is structured as:

.
β”œβ”€β”€ auth
β”œβ”€β”€ common
β”œβ”€β”€ exceptions
β”œβ”€β”€ experimental
β”‚   └── auctions
β”œβ”€β”€ items
β”œβ”€β”€ lang
β”œβ”€β”€ liches
β”œβ”€β”€ orders
β”œβ”€β”€ profile
β”œβ”€β”€ rivens
β”œβ”€β”€ statistics
└── utils.py
  • auth: authentication such as signin
  • experimental: experimental functionalities
    • auctions: auctions related
  • items: item related
  • liches lich related
  • orders: orders manipulation
  • profile: user profile manipulation
  • rivens: riven related
  • statistics: statistics of items

πŸ’ͺ More functionalities is coming!

πŸ—οΈ Better documentation is under construction!

The param url_name of some functions is regarded as the unique name for each item. For instance, if I search for the item Chroma Prime Systems on warframe market, the url for this page become https://warframe.market/items/chroma_prime_systems. And the last part of this url string is exactly the url_name for this item, i.e. chroma_prime_systems!

Another way to get url_name for an item is through the items.list_items() function.

Examples

First, we import the package as:

import pywmapi as wm

To list all of the tradable items:

wm.items.list_items()

To get the info for any item with its url_name:

wm.items.get_item("chroma_prime_systems")

To get the orders of a specific item:

wm.items.get_orders("chroma_prime_systems")

To create order:

sess = wm.auth.signin("your_account", "your_password")
# new selling order item of "Flame Gland" for 1000 platinum, quantity 1, rank 0 and invisible
new_item = wm.orders.OrderNewItem("5be5f5a23ffcc7038857f119", wm.common.OrderType.sell, 1000, 1, 1, False)
new_order = wm.orders.add_order(sess, new_item)

To get the statistics of historical prices of any item:

wm.statistics.get_statistic("chroma_prime_systems")

Signin & get current orders:

sess = wm.auth.signin("your_account", "your_password")
sell_orders, buy_orders = wm.orders.get_current_orders(sess)

To get all rivens templates:

wm.rivens.list_items()

Some of these function may have various optional params, such as platform, lang, include, etc.

More APIs could be found in corresponding packages.

Reference

Warframe market official API documentation

WFCD/market-api-spec

Public WM API

Changelog

See CHANGELOG.md.

Contributing

Feel free to make any issue or PR! 😊

Or contact me in game!

Donating

Any sort of donation in game would be appreciated.

Contact me in game:

/w AyajiLin Hi! ${Your words here}.

🀣 Relics or 5 platinums would be enough.

pywmapi's People

Contributors

leonardodalinky avatar mrtater avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.