https://github.com/hellonico/clj-todoist
Clojure Todoist API
https://github.com/hellonico/clj-todoist
Last synced: 12 months ago
JSON representation
Clojure Todoist API
- Host: GitHub
- URL: https://github.com/hellonico/clj-todoist
- Owner: hellonico
- Created: 2012-10-15T06:34:30.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-10-15T06:55:43.000Z (over 13 years ago)
- Last Synced: 2025-04-20T03:36:42.247Z (about 1 year ago)
- Language: Clojure
- Size: 129 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# clj-todoist
5 minutes Clojure wrapper for the todoist API
All the methods defined in that page can be used:
[http://todoist.com/API/help]
## Usage
In your project.clj:
```clojure
[clj-todoist "1.0.0"]
```
Then in your code:
```clojure
(ns clj2.core
(:require [clj-todoist.core :as todo]))
(todo/login {:email "nico@cloudstudio.co.jp" :password "12345"})
(todo/getProjects {})
(todo/addItem {:project_id 123 :content "test item"})
```
## License
Copyright (C) 2012 Nicolas Modrzyk
Distributed under the Eclipse Public License, the same as Clojure.