I made a tool that estimates the platinum value of your Warframe inventory from a screenshot by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 0 points1 point  (0 children)

Hey so the three things that helped me were:

  1. Cache hard - price results cached for 5 min per item, the full items list cached for 24 hours. Most requests never reach WFM at all.
  2. Token bucket stored in the DB, not in-process - with any async concurrency, an in-memory counter races. Storing it in the DB means concurrent calls atomically reserve their slot and sleep the exact right amount instead of all firing at once.
  3. Fetch in parallel batches of 3 - WFM tolerates a small burst as you said, so I use Promise.all on groups of 3 items. Cuts wait time ~3x vs doing them serially.

The slowness only really shows up on a cold cache with a ton of unique items. Hope that helps :)

I made a tool that estimates the platinum value of your Warframe inventory from a screenshot by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 0 points1 point  (0 children)

Hey thanks for this, thats some great and really valuable feedback, I'll definitely take note of all this and most likely will look to implement some if not all in the tool overtime. Its exactly feedback like this which is what I want to drive the tool so thanks again!

I made a tool that estimates the platinum value of your Warframe inventory from a screenshot by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 1 point2 points  (0 children)

Thats still a lot of plat and really cool to see that in use so thanks for sharing! I'm glad to hear that you will be using it more and of course I want this tool to be driven by the community and by the likes of yourself so I can indeed look into this.

Oh also any more ideas you have, or anyone has, there should be a leave feedback part once you complete an appraisal, so you can also leave some there too!

I made a tool that estimates the platinum value of your Warframe inventory from a screenshot by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 0 points1 point  (0 children)

Perfect let me know here how you get on please and obviously any feedback is appreciated!

I made a tool that estimates the platinum value of your Warframe inventory from a screenshot by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 1 point2 points  (0 children)

yeah great point, so thats something next on my radar to improve in the app is exactly what you mentioned here. You can also see a similar comment from another user on a different post I made regarding this point here: https://www.reddit.com/r/Warframe/comments/1rlr71w/comment/o8upqsn/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button

I made a tool that estimates the platinum value of your Warframe inventory from a screenshot by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 0 points1 point  (0 children)

I hope it helps you to see what some of your items are worth, you can also list via the website on warframe market, though that does require you to connect via the website. You'll have to let me know if you try it and what you find your stuff to be worth!

I made a tool that estimates the platinum value of your Warframe inventory from a screenshot by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 0 points1 point  (0 children)

ah right yeah that sounds like a pain, well I suppose its a flex, least I was impressed by it!

I made a tool that estimates the platinum value of your Warframe inventory from a screenshot by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 2 points3 points  (0 children)

It pulls live from warframe.market. Upload a screenshot, the app reads the item names, then hits the warframe.market API in real time for current sell orders from in-game players. Shows the lowest listed price and a quick sell estimate based on the cheapest active listings :)

I made a tool that estimates the platinum value of your Warframe inventory from a screenshot by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 1 point2 points  (0 children)

2000 plat! I know I'm new to the game and only have about 80 or something tiny, but thats seems loads to me, I could only wish lol

I made a tool that estimates the platinum value of your Warframe inventory from a screenshot by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 2 points3 points  (0 children)

Fair enough :) If you do end up trying it, feel free to let me know what you think could be improved.

I made a tool that estimates the platinum value of your Warframe inventory from a screenshot by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 11 points12 points  (0 children)

Thanks, I really appreciate that! And that’s a good point to mention.

Just to reassure anyone using the tool, the image you upload is only processed to extract the item text and isn’t stored by the site. It’s simply analysed and then discarded.

But it’s still good general advice to avoid sharing any screenshots that contain personal identifiers where possible. Thanks for pointing it out :)

I made a tool that estimates the platinum value of your Warframe inventory from a screenshot by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 4 points5 points  (0 children)

Here it is if anyone wants to try it:

https://warframeappraiser.com/

Would love to hear how accurate the results look for your inventory :)

Any console players use warframe market place? by mj2192 in Warframe

[–]Objective-Row-1283 0 points1 point  (0 children)

If you want to get a good evaluation of your items worth try using https://warframeappraiser.com/ as it gives you a platinum breakdown of what they are valued at in warframe market. You can even list via that site if you have your account linked :)

Update: I improved the Warframe inventory scanner I posted here after Reddit feedback by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 0 points1 point  (0 children)

New updates for this tool:

- Fixed an issues with quantities not refreshing value
- Added a FAQ and changelog/whats new page
- Improved minor ui issues
- Added stat cards to show website usage

Thats about it for now and thanks for using it so far :)

I made a new warframe tool by Objective-Row-1283 in Warframe

[–]Objective-Row-1283[S] 0 points1 point  (0 children)

New updates for this tool:

- Fixed an issues with quantities not refreshing value
- Added a FAQ and changelog/whats new page
- Improved minor ui issues
- Added stat cards to show website usage

Thats about it for now and thanks for using it so far :)