Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshuacc/simple-http
A simple http interface for AutoHotkey
https://github.com/joshuacc/simple-http
ahkpm-package autohotkey
Last synced: 1 day ago
JSON representation
A simple http interface for AutoHotkey
- Host: GitHub
- URL: https://github.com/joshuacc/simple-http
- Owner: joshuacc
- License: mit
- Created: 2022-11-16T00:28:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-16T00:58:03.000Z (about 2 years ago)
- Last Synced: 2024-11-25T09:43:37.692Z (2 months ago)
- Topics: ahkpm-package, autohotkey
- Language: AutoHotkey
- Homepage:
- Size: 2.93 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple HTTP for AutoHotkey
A simple http interface for AutoHotkey.
## Installation
The recommended approach for installation is to use [ahkpm][].
`ahkpm install gh:joshuacc/simple-http`
## Usage
```autohotkey
; Import the SimpleHTTP class
#Include, %A_ScriptDir%\ahkpm-modules\github.com\joshuacc\simple-http\simple-http.ahk; Create a new instance
http := new SimpleHTTP(); Send a GET request
http.get("https://api.github.com/users/joshuacc"); Send a POST request with data
http.POST("https://example.com", "myexample=pretty-cool")
```[ahkpm]:https://ahkpm.dev