Skip to content

Commit

Permalink
Merge branch 'master' of github.com:kylebebak/Requester
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebebak committed Apr 13, 2021
2 parents 06f0f73 + 886e373 commit f77cd4c
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ ignore =
C813,
C814,
E226,
E722
E722,
E741
max-line-length = 120
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ __Requester__ is a modern, team-oriented HTTP client for Sublime Text 3 that com
+ Forms and file uploads, Wget-style downloads
+ HTTPS, proxies, redirects, and more
- Intuitive, modern UX
+ Define [__environment variables__](http://requester.org/#environment-variables) with regular Python code
+ Execute requests and display responses in parallel, [__or chain requests__](http://requester.org/#chaining-by-reference)
+ Define [__environment variables__](https://kylebebak.github.io/Requester/#environment-variables) with regular Python code
+ Execute requests and display responses in parallel, [__or chain requests__](https://kylebebak.github.io/Requester/#chaining-by-reference)
+ Edit and replay requests from individual response tabs, page through past requests
* [__Explore hyperlinked APIs__](http://requester.org/#explore-hyperlinked-apis-hateoas) from response tabs
+ Fuzzy searchable [__request collections and request history__](http://requester.org/#navigation-and-history)
* [__Explore hyperlinked APIs__](https://kylebebak.github.io/Requester/#explore-hyperlinked-apis-hateoas) from response tabs
+ Fuzzy searchable [__request collections and request history__](https://kylebebak.github.io/Requester/#navigation-and-history)
+ Formatted, colorized output with automatic syntax highlighting
+ Clear error handling and error messages
+ [__Full GraphQL support__](http://requester.org/#graphql)
+ [__Full GraphQL support__](https://kylebebak.github.io/Requester/#graphql)
- Built for teams
+ Version and share requests however you want (Git, GitHub, etc)
+ Export requests to cURL or HTTPie, import requests from cURL
+ Lightweight, integrated test runner with support for JSON Schema
* [__Export Requester tests to runnable test script__](http://requester.org/#export-tests-to-runnable-script)
* [__Export Requester tests to runnable test script__](https://kylebebak.github.io/Requester/#export-tests-to-runnable-script)
+ [AB-style](https://httpd.apache.org/docs/2.4/programs/ab.html) benchmarking tool
+ Runs on Linux, Windows and macOS/OS X
- [__Highly extensible__](http://requester.org/#import-any-python-package-with-requester)
- [__Highly extensible__](https://kylebebak.github.io/Requester/#import-any-python-package-in-requester-env)

---

Expand Down Expand Up @@ -85,7 +85,7 @@ Try it out.


## Documentation
Wanna see everything else Requester does? Detailed, [__fuzzy searchable documentation here__](http://requester.org).
Wanna see everything else Requester does? Detailed, [__fuzzy searchable documentation here__](https://kylebebak.github.io/Requester/).


## Release Notes
Expand Down
7 changes: 7 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Requester Docs

Docs site it built with `jekyll`, which is "built in" to GitHub pages.

To serve docs site locally, `gem install jekyll kramdown`, then `cd` into this directory, then `jekyll serve`.

If the docs look good here, they'll look good in `GitHub`.
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ markdown: kramdown
kramdown:
input: GFM

exclude: [Gemfile, Gemfile.lock, tutorial.pyr, build.py, toc.py]
exclude: [Gemfile, Gemfile.lock, tutorial.pyr, build.py, toc.py, README.md]

gems:
- jekyll-seo-tag
2 changes: 1 addition & 1 deletion docs/_content/body.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ post('https://requestb.in/<your_request_bin>', chunked='/path/to/file')

If you pass the file as a `chunked` upload, the __"Transfer-Encoding": "chunked"__ header is added to your request. Some servers don't allow chunked uploads, in which case you can use a `streamed` upload. If they're an option, chunked uploads are nicer: they come with a progress bar and can be cancelled.

>If you need streaming uploads for multipart forms, or uploads of multiple files, the `requests-toolbelt` package has your back. Check out [this section](#import-any-python-package-with-requester).
>If you need streaming uploads for multipart forms, or uploads of multiple files, the `requests-toolbelt` package has your back. Check out [this section](#import-any-python-package-in-requester-env).

### Downloads
Expand Down
2 changes: 1 addition & 1 deletion docs/_content/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ __Requester__ is a modern, team-oriented HTTP client for Sublime Text 3 that com
* [__Export Requester tests to runnable test script__](https://kylebebak.github.io/Requester/#export-tests-to-runnable-script)
+ [AB-style](https://httpd.apache.org/docs/2.4/programs/ab.html) benchmarking tool
+ Runs on Linux, Windows and macOS/OS X
- [__Highly extensible__](https://kylebebak.github.io/Requester/#import-any-python-package-with-requester)
- [__Highly extensible__](https://kylebebak.github.io/Requester/#import-any-python-package-in-requester-env)

---

Expand Down
2 changes: 1 addition & 1 deletion messages.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"install": "messages/install.txt",
"2.39.2": "messages/release_notes.txt"
"2.39.3": "messages/release_notes.txt"
}
4 changes: 4 additions & 0 deletions messages/release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.39.3
Changes domain of docs site.


# 2.39.2
Improves `curl_to_request`; to gracefully ignore unknown CURL args.

Expand Down

0 comments on commit f77cd4c

Please sign in to comment.