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
HTTP Requests for Processing is a small library that takes the pain out of doing HTTP requests in Processing.
5
+
6
+
HTTP Requests for Processing is based on code by [Chris Allick](http://chrisallick.com/) and [Daniel Shiffman](http://www.shiffman.net/).
7
+
8
+
9
+
How to
10
+
------------
11
+
Install the library by [downloading the latest release](https://github.com/runemadsen/HTTProcessing/releases) or via the [Processing contribution manager](http://wiki.processing.org/w/How_to_Install_a_Contributed_Library).
12
+
13
+
Then import the library in your sketch:
14
+
```Java
15
+
importhttp.requests.*;
16
+
```
17
+
Then you can make GET and POST requests from your code:
18
+
```Java
19
+
GetRequest get =newGetRequest("http://httprocessing.heroku.com");
0 commit comments