You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The [Makefile](https://github.com/httpie/httpie/blob/master/Makefile) contains a bunch of tasks to get you started.
62
+
The [Makefile](https://github.com/httpie/cli/blob/master/Makefile) contains a bunch of tasks to get you started.
63
63
You can run `$ make` to see all the available tasks.
64
64
65
65
To get started, run the command below, which:
@@ -112,7 +112,7 @@ and that `make pycodestyle` passes.
112
112
113
113
Please add tests for any new features and bug fixes.
114
114
115
-
When you open a Pull Request, [GitHub Actions](https://github.com/httpie/httpie/actions) will automatically run HTTPie’s [test suite](https://github.com/httpie/httpie/tree/master/tests) against your code, so please make sure all checks pass.
115
+
When you open a Pull Request, [GitHub Actions](https://github.com/httpie/cli/actions) will automatically run HTTPie’s [test suite](https://github.com/httpie/cli/tree/master/tests) against your code, so please make sure all checks pass.
@@ -34,7 +34,7 @@ They use simple and natural syntax and provide formatted and colorized output.
34
34
35
35
<divalign="center">
36
36
37
-
<imgsrc="https://raw.githubusercontent.com/httpie/httpie/master/docs/httpie-animation.gif"alt="HTTPie in action"width="100%"/>
37
+
<imgsrc="https://raw.githubusercontent.com/httpie/cli/master/docs/httpie-animation.gif"alt="HTTPie in action"width="100%"/>
38
38
39
39
40
40
</div>
@@ -88,10 +88,10 @@ Build and print a request without sending it using [offline mode](https://httpie
88
88
http --offline pie.dev/post hello=offline
89
89
```
90
90
91
-
Use [GitHub API](https://developer.github.com/v3/issues/comments/#create-a-comment) to post a comment on an [Issue](https://github.com/httpie/httpie/issues/83) with [authentication](https://httpie.io/docs#authentication):
91
+
Use [GitHub API](https://developer.github.com/v3/issues/comments/#create-a-comment) to post a comment on an [Issue](https://github.com/httpie/cli/issues/83) with [authentication](https://httpie.io/docs#authentication):
92
92
93
93
```bash
94
-
http -a USERNAME POST https://api.github.com/repos/httpie/httpie/issues/83/comments body='HTTPie is awesome! :heart:'
94
+
http -a USERNAME POST https://api.github.com/repos/httpie/cli/issues/83/comments body='HTTPie is awesome! :heart:'
95
95
```
96
96
97
97
[See more examples →](https://httpie.io/docs#examples)
@@ -102,11 +102,11 @@ http -a USERNAME POST https://api.github.com/repos/httpie/httpie/issues/83/comme
102
102
- Join our [Discord server](https://httpie.io/discord) is to ask questions, discuss features, and for general API chat.
103
103
- Tweet at [@httpie](https://twitter.com/httpie) on Twitter.
104
104
- Use [StackOverflow](https://stackoverflow.com/questions/tagged/httpie) to ask questions and include a `httpie` tag.
105
-
- Create [GitHub Issues](https://github.com/httpie/httpie/issues) for bug reports and feature requests.
105
+
- Create [GitHub Issues](https://github.com/httpie/cli/issues) for bug reports and feature requests.
106
106
- Subscribe to the [HTTPie newsletter](https://httpie.io) for occasional updates.
107
107
108
108
## Contributing
109
109
110
-
Have a look through existing [Issues](https://github.com/httpie/httpie/issues) and [Pull Requests](https://github.com/httpie/httpie/pulls) that you could help with. If you'd like to request a feature or report a bug, please [create a GitHub Issue](https://github.com/httpie/httpie/issues) using one of the templates provided.
110
+
Have a look through existing [Issues](https://github.com/httpie/cli/issues) and [Pull Requests](https://github.com/httpie/cli/pulls) that you could help with. If you'd like to request a feature or report a bug, please [create a GitHub Issue](https://github.com/httpie/cli/issues) using one of the templates provided.
Copy file name to clipboardExpand all lines: docs/README.md
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ This documentation is best viewed at [httpie.io/docs](https://httpie.org/docs).
19
19
You can select your corresponding HTTPie version as well as run examples directly from the browser using a [termible.io](https://termible.io?utm_source=httpie-readme) embedded terminal.
20
20
21
21
If you are reading this on GitHub, then this text covers the current *development* version.
22
-
You are invited to submit fixes and improvements to the docs by editing [this file](https://github.com/httpie/httpie/blob/master/docs/README.md).
22
+
You are invited to submit fixes and improvements to the docs by editing [this file](https://github.com/httpie/cli/blob/master/docs/README.md).
23
23
24
24
</div>
25
25
@@ -255,7 +255,7 @@ If you want to try out the latest version of HTTPie that hasn't been officially
255
255
You can use the following command to install the development version of HTTPie on Linux, macOS, Windows, or FreeBSD operating systems. With this command, the code present in the `master` branch is downloaded and installed using `pip`.
There are other ways to install the development version of HTTPie on macOS and Linux.
@@ -274,7 +274,7 @@ $ snap remove httpie
274
274
$ snap install httpie --edge
275
275
```
276
276
277
-
To verify the installation, you can compare the [version identifier on GitHub](https://github.com/httpie/httpie/blob/master/httpie/__init__.py#L6) with the one available on your machine. You can check the version of HTTPie on your machine by using the command `http --version`.
277
+
To verify the installation, you can compare the [version identifier on GitHub](https://github.com/httpie/cli/blob/master/httpie/__init__.py#L6) with the one available on your machine. You can check the version of HTTPie on your machine by using the command `http --version`.
278
278
279
279
```bash
280
280
$ http --version
@@ -325,10 +325,10 @@ Build and print a request without sending it using [offline mode](#offline-mode)
325
325
$ http --offline pie.dev/post hello=offline
326
326
```
327
327
328
-
Use [GitHub API](https://developer.github.com/v3/issues/comments/#create-a-comment) to post a comment on an [issue](https://github.com/httpie/httpie/issues/83) with [authentication](#authentication):
328
+
Use [GitHub API](https://developer.github.com/v3/issues/comments/#create-a-comment) to post a comment on an [issue](https://github.com/httpie/cli/issues/83) with [authentication](#authentication):
329
329
330
330
```bash
331
-
$ http -a USERNAME POST https://api.github.com/repos/httpie/httpie/issues/83/comments body='HTTPie is awesome! :heart:'
331
+
$ http -a USERNAME POST https://api.github.com/repos/httpie/cli/issues/83/comments body='HTTPie is awesome! :heart:'
332
332
```
333
333
334
334
Upload a file using [redirected input](#redirected-input):
You can even pipe web services together using HTTPie:
1755
1755
1756
1756
```bash
1757
-
$ http GET https://api.github.com/repos/httpie/httpie| http POST pie.dev/post
1757
+
$ http GET https://api.github.com/repos/httpie/cli| http POST pie.dev/post
1758
1758
```
1759
1759
1760
1760
You can use `cat` to enter multiline data on the terminal:
@@ -2002,7 +2002,7 @@ HTTPie features a download mode in which it acts similarly to `wget`.
2002
2002
When enabled using the `--download, -d` flag, response headers are printed to the terminal (`stderr`), and a progress bar is shown while the response body is being saved to a file.
| `--bind-cookies` | Bind all previously [unbound cookies](#host-based-cookie-policy) to the session’s host ([context](https://github.com/httpie/httpie/security/advisories/GHSA-9w4w-cpc8-h2fq)). |
2316
+
| `--bind-cookies` | Bind all previously [unbound cookies](#host-based-cookie-policy) to the session’s host ([context](https://github.com/httpie/cli/security/advisories/GHSA-9w4w-cpc8-h2fq)). |
2317
2317
2318
2318
2319
2319
## Config
@@ -2406,7 +2406,7 @@ To prevent your program from becoming unresponsive when the server fails to resp
2406
2406
2407
2407
## Plugin manager
2408
2408
2409
-
HTTPie offers extensibility through a [plugin API](https://github.com/httpie/httpie/blob/master/httpie/plugins/base.py),
2409
+
HTTPie offers extensibility through a [plugin API](https://github.com/httpie/cli/blob/master/httpie/plugins/base.py),
2410
2410
and there are dozens of plugins available to try!
2411
2411
They add things like new authentication methods ([akamai/httpie-edgegrid](https://github.com/akamai/httpie-edgegrid)),
2412
2412
transport mechanisms ([httpie/httpie-unixsocket](https://github.com/httpie/httpie-unixsocket)),
@@ -2546,7 +2546,7 @@ All changes are recorded in the [change log](#change-log).
2546
2546
2547
2547
HTTPie has the following community channels:
2548
2548
2549
-
- [GitHub Issues](https://github.com/httpie/httpie/issues) for bug reports and feature requests
2549
+
- [GitHub Issues](https://github.com/httpie/cli/issues) for bug reports and feature requests
2550
2550
- [Discord server](https://httpie.io/discord) to ask questions, discuss features, and for general API development discussion
2551
2551
- [StackOverflow](https://stackoverflow.com) to ask questions (make sure to use the [httpie](https://stackoverflow.com/questions/tagged/httpie) tag)
2552
2552
@@ -2577,25 +2577,25 @@ Helpers to convert from other client tools:
2577
2577
2578
2578
### Contributing
2579
2579
2580
-
See [CONTRIBUTING](https://github.com/httpie/httpie/blob/master/CONTRIBUTING.md).
2580
+
See [CONTRIBUTING](https://github.com/httpie/cli/blob/master/CONTRIBUTING.md).
2581
2581
2582
2582
### Security policy
2583
2583
2584
-
See [github.com/httpie/httpie/security/policy](https://github.com/httpie/httpie/security/policy).
2584
+
See [github.com/httpie/cli/security/policy](https://github.com/httpie/cli/security/policy).
2585
2585
2586
2586
### Change log
2587
2587
2588
-
See [CHANGELOG](https://github.com/httpie/httpie/blob/master/CHANGELOG.md).
2588
+
See [CHANGELOG](https://github.com/httpie/cli/blob/master/CHANGELOG.md).
2589
2589
2590
2590
### Artwork
2591
2591
2592
-
- [README Animation](https://github.com/httpie/httpie/blob/master/docs/httpie-animation.gif) by [Allen Smith](https://github.com/loranallensmith).
2592
+
- [README Animation](https://github.com/httpie/cli/blob/master/docs/httpie-animation.gif) by [Allen Smith](https://github.com/loranallensmith).
[Jakub Roztocil](https://roztocil.co) ([@jakubroztocil](https://twitter.com/jakubroztocil)) created HTTPie and [these fine people](https://github.com/httpie/httpie/blob/master/AUTHORS.md) have contributed.
2600
+
[Jakub Roztocil](https://roztocil.co) ([@jakubroztocil](https://twitter.com/jakubroztocil)) created HTTPie and [these fine people](https://github.com/httpie/cli/blob/master/AUTHORS.md) have contributed.
Copy file name to clipboardExpand all lines: docs/packaging/README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
Welcome on the documentation part of the **HTTPie release process**.
4
4
5
5
- If you do not know HTTPie, have a look [here](https://httpie.io/cli).
6
-
- If you are looking for HTTPie installation or upgrade instructions, then you can find all you need for your OS on [that page](https://httpie.io/docs#installation). In the case you do not find your OS, [let us know](https://github.com/httpie/httpie/issues/).
6
+
- If you are looking for HTTPie installation or upgrade instructions, then you can find all you need for your OS on [that page](https://httpie.io/docs#installation). In the case you do not find your OS, [let us know](https://github.com/httpie/cli/issues/).
7
7
- If you are looking for technical information about the HTTPie packaging, then you are at the good place.
8
8
9
9
## About
@@ -25,7 +25,7 @@ The overall release process starts simple:
25
25
26
26
## Company-specific tasks
27
27
28
-
- Blank the `master_and_released_docs_differ_after` value in [config.json](https://github.com/httpie/httpie/blob/master/docs/config.json).
28
+
- Blank the `master_and_released_docs_differ_after` value in [config.json](https://github.com/httpie/cli/blob/master/docs/config.json).
29
29
- Update the [contributors list](../contributors).
30
30
- Update the HTTPie version bundled into [Termible](https://termible.io/) ([example](https://github.com/httpie/termible/pull/1)).
31
31
@@ -44,4 +44,4 @@ A more complete state of deployment can be found on [repology](https://repology.
:new: You do not find your system or you would like to see HTTPie supported on another OS? Then [let us know](https://github.com/httpie/httpie/issues/).
47
+
:new: You do not find your system or you would like to see HTTPie supported on another OS? Then [let us know](https://github.com/httpie/cli/issues/).
Copy file name to clipboardExpand all lines: docs/packaging/brew/README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ We will discuss setting up the environment, installing development tools, instal
13
13
14
14
## Overall process
15
15
16
-
The brew deployment is completely automated, and only requires a trigger to [`Release on Homebrew`](https://github.com/httpie/httpie/actions/workflows/release-brew.yml) action
16
+
The brew deployment is completely automated, and only requires a trigger to [`Release on Homebrew`](https://github.com/httpie/cli/actions/workflows/release-brew.yml) action
17
17
from the release manager.
18
18
19
19
If it is needed to be done manually, the following command can be used:
@@ -26,6 +26,6 @@ which will bump the formula, and create a PR against the package index.
26
26
27
27
## Hacking
28
28
29
-
Make your changes, test the formula through the [`Test Brew Package`](https://github.com/httpie/httpie/actions/workflows/test-package-mac-brew.yml) action
29
+
Make your changes, test the formula through the [`Test Brew Package`](https://github.com/httpie/cli/actions/workflows/test-package-mac-brew.yml) action
30
30
and then finally submit your patch to [`homebrew-core`](https://github.com/Homebrew/homebrew-core`)
0 commit comments