An open API service indexing awesome lists of open source software.

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

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.