https://github.com/oscaro/t7x
Transifex Clojure API client
https://github.com/oscaro/t7x
api-client clojure transifex-api
Last synced: 4 months ago
JSON representation
Transifex Clojure API client
- Host: GitHub
- URL: https://github.com/oscaro/t7x
- Owner: oscaro
- License: epl-1.0
- Created: 2017-10-19T17:08:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-08-28T12:05:43.000Z (10 months ago)
- Last Synced: 2025-10-26T18:42:43.007Z (8 months ago)
- Topics: api-client, clojure, transifex-api
- Language: Clojure
- Homepage: https://oscaro.github.io/t7x
- Size: 72.3 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# t7x
**t7x** is a [Transifex][] API client written in Clojure.
[Transifex]: https://www.transifex.com/
## Usage
```clojure
[com.oscaro/t7x "0.1.0"]
```
### Examples
#### Download an XLSX resource as a Docjure workbook
We'll use Docjure for this example:
```clojure
[dk.ative/docjure "1.11.0"]
```
```clojure
(ns your-ns
(:require [t7x.client :as tx]
[clojure.java.io :as io]
[dk.ative.docjure.spreadsheet :as sp]))
(defn get-workbook
[]
(-> (tx/mk-client "your-api-key")
(tx/download-bin-resource "myproject" "myxlsx")
io/input-stream
sp/load-workbook))
```
## License
Copyright © 2017 Oscaro