]> git.lizzy.rs Git - go-anidb.git/commit
Initial commit
authorDiogo Franco (Kovensky) <diogomfranco@gmail.com>
Fri, 12 Jul 2013 20:22:58 +0000 (17:22 -0300)
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>
Fri, 12 Jul 2013 20:22:58 +0000 (17:22 -0300)
commitf6a5ff8e5edf1d351c6e7afadcf60034250b2659
tree91d9dbd9b0f714f61de2508a53569f6ce4e26595
Initial commit

For now, only includes low-level wrappers for AniDB's various APIs. The
current API is in no way frozen and may break at any time.

These are not intended for being used in third party code, but as building
blocks for a unified API library.

The HTTP wrapper does simple encoding/xml wrapping of the anime and categorylist
HTTP API calls. No caching is implemented.

The UDP wrapper does rate control internally and implements the essential
session-keeping API calls, but does no caching.
18 files changed:
http/anime.go [new file with mode: 0644]
http/category.go [new file with mode: 0644]
http/misc.go [new file with mode: 0644]
titles/result.go [new file with mode: 0755]
titles/resultsearch.go [new file with mode: 0755]
titles/search.go [new file with mode: 0755]
titles/search_test.go [new file with mode: 0755]
titles/searchbase.go [new file with mode: 0755]
titles/sort.go [new file with mode: 0755]
titles/titles.go [new file with mode: 0755]
udp/aes.go [new file with mode: 0755]
udp/aes_test.go [new file with mode: 0755]
udp/auth.go [new file with mode: 0755]
udp/comm.go [new file with mode: 0755]
udp/misc.go [new file with mode: 0755]
udp/packet.go [new file with mode: 0755]
udp/reply.go [new file with mode: 0755]
udp/sendqueue.go [new file with mode: 0755]