├── paw.png ├── 2021-02-Paw-Banner-RapidAPI-Paw.webp ├── .gitignore ├── .github └── ISSUE_TEMPLATE │ └── config.yml └── README.md /paw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckymarmot/Paw-Issues/HEAD/paw.png -------------------------------------------------------------------------------- /2021-02-Paw-Banner-RapidAPI-Paw.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckymarmot/Paw-Issues/HEAD/2021-02-Paw-Banner-RapidAPI-Paw.webp -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .git 3 | .svn 4 | xcuserdata/ 5 | *.xcworkspace 6 | build/ 7 | *.docset 8 | Configurations/local_config.h 9 | docs/ 10 | *.un~ -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Paw Community Support 4 | url: https://paw.cloud/support?app=com.luckymarmot.Paw 5 | about: Please ask and answer questions here. 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Paw HTTP Client 2 | 3 | **This repository is going to be closed.** 4 | 5 | **Paw is now part of [RapidAPI](https://rapidapi.com/).** 6 | ![RapidAPI-Paw](./2021-02-Paw-Banner-RapidAPI-Paw.webp) 7 | 8 | If you're using Paw and have found some bugs, please feel free to email at [support@paw.cloud](mailto:support@paw.cloud), or [create an Issue here](https://paw.cloud/support?app=com.luckymarmot.Paw). We'll always appreciate your help. Also, please never hesitate to create an issue for a tiny bug, a UI problem, a keyboard shortcut that you'd love to have, or a feature you'd like to see in the next release. 9 | 10 | Every detail count! 11 | 12 | Thanks a lot for enjoying Paw and for helping! 13 | 14 | [Micha Mazaheri](http://micha.mazaheri.me) 15 | 16 | ![Paw HTTP Client](./paw.png) 17 | 18 | # What is Paw? 19 | 20 | Paw is an HTTP Client for Mac, Linux and Windows. 21 | 22 | Easily craft your HTTP requests, try them, archive them. Setup HTTP Headers, URL parameters, form-encoded POST key-values or text. Get easy-to-read responses with well formatted headers and body. 23 | 24 | [Learn more about Paw](https://paw.cloud) 25 | 26 | * Smart Autocompletion: a rich database of HTTP headers and their most common values, and ads your entry for future completions. 27 | 28 | * Response Formatting: responses are automatically formatted, and colored (JSON, XML, HTML, RSS...). 29 | 30 | * Simply write your URL: Paw colors it to make it more readable, 31 | and parses the parameters as a key-value table. Or enter parameters in the table, it will add them to the URL. 32 | 33 | * Web & Images display: Compose the most complicated HTTP request and visualize the result like if it was in your browser. It's nice when your server always formats errors in HTML! 34 | 35 | * Copy & paste as cURL: Copy a request from Paw, you can just paste it anywhere as a cURL-formatted request. 36 | 37 | * Keyboard Shortcuts: Don't waste time anymore with mouse, Paw is build with a few easy-to-learn shortcuts to save your time. 38 | 39 | # License 40 | 41 | Sorry for disappointing you, but Paw is not Open Source :( You can find it on the Mac App Store: [Paw HTTP Client](https://paw.cloud) ... 42 | --------------------------------------------------------------------------------