[BangPypers] Rest API testing tool

2014-12-09 Thread Mukesh Yadav
Hi, I was looking for a tool or a library which can do automated testing of APIs, currently I use Postman (Chrome extension for manual testing). I found https://github.com/vlucas/frisby which is exactly what I was looking for is there something similar in python. -- Regards Mukesh Yadav muke

Re: [BangPypers] Rest API testing tool

2014-12-09 Thread Pratik Vyas
On Tue, Dec 9, 2014 at 5:49 PM, Mukesh Yadav wrote: > Hi, >I was looking for a tool or a library which can do automated testing of > APIs, currently I use Postman (Chrome extension for manual testing). > I found https://github.com/vlucas/frisby which is exactly what I was > looking for is the

Re: [BangPypers] Rest API testing tool

2014-12-09 Thread Dhruv Baldawa
There is also https://github.com/svanoort/pyresttest/ you can try. On Tue, Dec 9, 2014 at 5:49 PM, Mukesh Yadav wrote: > Hi, >I was looking for a tool or a library which can do automated testing of > APIs, currently I use Postman (Chrome extension for manual testing). > I found https://gith

Re: [BangPypers] Rest API testing tool

2014-12-09 Thread Mukesh Yadav
@Dhruva its nice but it does not test the data type of values. @pratik thats the last choice. On Tue, Dec 9, 2014 at 5:52 PM, Dhruv Baldawa wrote: > There is also https://github.com/svanoort/pyresttest/ you can try. > > On Tue, Dec 9, 2014 at 5:49 PM, Mukesh Yadav wrote: > > > Hi, > >I was

Re: [BangPypers] Rest API testing tool

2014-12-09 Thread Bibhas Ch Debnath
requests/urllib + unittest is possibly the best fit. Thanks, Bibhas Debnath http://bibhas.in On Tue, Dec 9, 2014 at 7:05 PM, Mukesh Yadav wrote: > @Dhruva its nice but it does not test the data type of values. > @pratik thats the last choice. > > On Tue, Dec 9, 2014 at 5:52 PM, Dhruv Balda