Lemon2311 / Lemon2311/MicroAPIgRESTion
Query Params of route in handler need to be defined in @route and as handler function atributes
Open
Nobody has claimed this yet.
enhancement
pretty
- Dominant language
- Python
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
I would be cool to mention them only once.
Example of behaviour:
@GET('/nips', 'email', 'nrOfNips')
async def nips_handler(email, nrOfNips):
return f'{email}, {nrOfNips}'
Desired behaviour can be either:
1.)
@GET('/nips', 'email', 'nrOfNips')
async def nips_handler():
return f'{email}, {nrOfNips}'
or
2.)
@GET('/nips')
async def nips_handler(email, nrOfNips):
return f'{email}, {nrOfNips}'
or something similar.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by tracing the existing GET decorator and handler function behavior behind the nips_handler example. Compare the two proposed parameter declarations and clarify which convention the project should support; the work is done when one behavior is agreed upon and its expected handling is defined.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- api
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 35/100