Kludex / Kludex/bump-testclient

Support `data` with list of tuples to `data` with dictionary

Open
#2 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
42
Forks
0
PR merge metrics
No merged PRs in 30d

Description

The goal is to support this transformation:

```python
client.post("/", data=[('ha", "1"), ("ha", "2")])
```
To:
```python
client.post("/", data={"ha": ["1", "2"]})
```

Contributor guide

No contributing guide indexed for this repository

Research direction

Start by locating the client.post implementation and tracing how its data argument is normalized before the request is sent. Confirm the tuple-list form and dictionary-with-list-values form both produce the intended request data, then add or update coverage for the transformation.

Written by the indexing model from the issue text.

Assessment

Tech stack
python
Domain
api
Issue type
Feature
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
58/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.