Questions tagged [hug]

Hug is Python3 API development framework built upon falcon.

Hug aims to make developing Python driven APIs as simple as possible, but no simpler. As a result, it drastically simplifies Python API development.

31 questions
-2
votes
1 answer

Fetching GET request parameters from Java to Python Hug REST API

I have created a Rest API using Python Hug which accepts a list as a parameter. Python REST API code import hug @hug.get('/myFunc/') def myFunc(textList) print(len(textList)) print(type(textList)) Java Code List textArr = new…
jacob mathew
  • 143
  • 1
  • 11
1 2
3