Lemon2311 / Lemon2311/MicroAPIgRESTion

Query Params of route in handler need to be defined in @route and as handler function atributes

Open
#2 0 comments 0 reactions 0 assignees View on GitHub

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

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. 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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.