Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oscaro/t7x
Transifex Clojure API client
https://github.com/oscaro/t7x
api-client clojure transifex-api
Last synced: 6 days 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 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-15T12:13:22.000Z (over 4 years ago)
- Last Synced: 2024-12-19T04:47:11.532Z (about 1 month ago)
- Topics: api-client, clojure, transifex-api
- Language: Clojure
- Homepage: https://cljdoc.org/d/com.oscaro/t7x/0.1.0/doc/readme
- Size: 7.81 KB
- Stars: 1
- Watchers: 5
- 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