SteamStoreQuery is a simple library that allows you to search the Steam store and get listings for related games, including their price (USD), name, store link, image link, and app id. (Uses undocumented, not supported store endpoint)
A simple package for easy access to API's, but only currently supporting Glassdoor. It returns the JSON result, as well as converts the result into a full range of necessary classes, accessed via RootObject.
For usage details, please see the project site link.
Are you a user of YoutubeExtractor looking to switch to libvideo? libvideo.compat is a compatibility API that helps you to make the move, without having to change a single line of code.
Find us on GitHub at https://github.com/omansak/libvideo
Extension classes for ISession and IDistributedCache, enabling the functionality to set or get objects of any type using fast MessagePack serializer with LZ4 compression algorithm.
Package for simple web requests. Allows to synchronously or asynchronously send GET and POST requests with one line of code and get response in specified or dynamic object.
This client library allow you to make http request easily.
How to use:
var address = "http://localhost:50787/api/Test/Test";
var requestModel = new RequestModel() { Id = "guid" };
var result = new HttpClientHelper().PostJson<ResponseModel>(address, "Basic", "***", requestModel);