https://github.com/samth/github.rkt
GitHub bindings for Racket
https://github.com/samth/github.rkt
Last synced: about 1 year ago
JSON representation
GitHub bindings for Racket
- Host: GitHub
- URL: https://github.com/samth/github.rkt
- Owner: samth
- Created: 2013-06-10T11:50:07.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2015-05-12T14:29:32.000Z (about 11 years ago)
- Last Synced: 2025-04-04T12:56:51.057Z (about 1 year ago)
- Language: Racket
- Size: 224 KB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### GitHub API Bindings for Racket
License: MIT
Example:
```racket
#lang racket
(require github)
(define c (new simple-client%))
(hash-ref (send c create-gist (hash "a-file" "some content")) 'html_url)
```