mirror of
https://github.com/httpie/cli.git
synced 2025-03-13 14:28:50 +01:00
Merge af32849d4d
into 5b604c37c6
This commit is contained in:
commit
65d29db492
5
.codespellrc
Normal file
5
.codespellrc
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[codespell]
|
||||||
|
skip = .git,*.pdf,*.svg,.codespellrc
|
||||||
|
check-hidden = true
|
||||||
|
# ignore-regex =
|
||||||
|
ignore-words-list = datas
|
22
.github/workflows/codespell.yml
vendored
Normal file
22
.github/workflows/codespell.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
name: Codespell
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
codespell:
|
||||||
|
name: Check for spelling errors
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Codespell
|
||||||
|
uses: codespell-project/actions-codespell@v2
|
@ -2103,7 +2103,7 @@ $ cat session.json
|
|||||||
```
|
```
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Re-use the existing session — the API-Token header will be set:
|
# Reuse the existing session — the API-Token header will be set:
|
||||||
$ http --session=./session.json pie.dev/headers
|
$ http --session=./session.json pie.dev/headers
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -2410,7 +2410,7 @@ HTTPie offers extensibility through a [plugin API](https://github.com/httpie/cli
|
|||||||
and there are dozens of plugins available to try!
|
and there are dozens of plugins available to try!
|
||||||
They add things like new authentication methods ([akamai/httpie-edgegrid](https://github.com/akamai/httpie-edgegrid)),
|
They add things like new authentication methods ([akamai/httpie-edgegrid](https://github.com/akamai/httpie-edgegrid)),
|
||||||
transport mechanisms ([httpie/httpie-unixsocket](https://github.com/httpie/httpie-unixsocket)),
|
transport mechanisms ([httpie/httpie-unixsocket](https://github.com/httpie/httpie-unixsocket)),
|
||||||
message convertors ([banteg/httpie-image](https://github.com/banteg/httpie-image)), or simply
|
message converters ([banteg/httpie-image](https://github.com/banteg/httpie-image)), or simply
|
||||||
change how a response is formatted.
|
change how a response is formatted.
|
||||||
|
|
||||||
> Note: Plugins are usually made by our community members, and thus have no direct relationship with
|
> Note: Plugins are usually made by our community members, and thus have no direct relationship with
|
||||||
|
@ -21,7 +21,7 @@ Examples:
|
|||||||
$ python extras/profiling/benchmarks.py --fast
|
$ python extras/profiling/benchmarks.py --fast
|
||||||
|
|
||||||
# For verify everything works as expected, pass --debug-single-value.
|
# For verify everything works as expected, pass --debug-single-value.
|
||||||
# It will only run everything once, so the resuls are not reliable. But
|
# It will only run everything once, so the results are not reliable. But
|
||||||
# very useful when iterating on a benchmark
|
# very useful when iterating on a benchmark
|
||||||
$ python extras/profiling/benchmarks.py --debug-single-value
|
$ python extras/profiling/benchmarks.py --debug-single-value
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user