Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dchest/gotweet
This was the first command-line Twitter client in Go programming language, written two days after the release of Go. IT NO LONGER WORKS BECAUSE TWITTER REMOVED HTTP AUTHENTICATION SUPPORT IN API. Use the one in the link below!
https://github.com/dchest/gotweet
Last synced: about 1 month ago
JSON representation
This was the first command-line Twitter client in Go programming language, written two days after the release of Go. IT NO LONGER WORKS BECAUSE TWITTER REMOVED HTTP AUTHENTICATION SUPPORT IN API. Use the one in the link below!
- Host: GitHub
- URL: https://github.com/dchest/gotweet
- Owner: dchest
- License: apache-2.0
- Created: 2009-11-28T21:55:17.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2010-02-15T21:26:47.000Z (almost 15 years ago)
- Last Synced: 2024-04-15T01:16:08.317Z (7 months ago)
- Language: Go
- Homepage: https://github.com/mattn/twty
- Size: 107 KB
- Stars: 9
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE
Awesome Lists containing this project
README
gotweet
=======Gotweet is a simple command-line Twitter client in [Go programming language](http://golang.org).
Building from Sources
---------------------To make (you have to install [Go](http://golang.org) first):
$ cd src
$ make(Note: currently it builds using 6g compiler. If you change Makefile to be compiler-independent, please fork and submit your pull request.)
Binaries
--------* [gotweet-osx-amd64.zip](http://c0043312.cdn.cloudfiles.rackspacecloud.com/gotweet-osx-amd64.zip)
(Mac OS X 10.5 x86-64, 370 KB, Version [b975035f58], 2009-11-12 22:07:02)* [gotweet-linux-amd64.zip](http://c0043312.cdn.cloudfiles.rackspacecloud.com/gotweet-linux-amd64.zip)
(Linux amd64, 370 KB, Version [b975035f58], 2009-11-12 22:07:02)Usage
------Usage: ./gotweet [options...] action ...
Options:
-p="": password
-u="": username (Twitter login)
Actions:
post Post status update (followed by status). Alias: p
user Show user timeline. Alias: u
friends Show friends timeline. Alias: (nothing)
mentions Show mentions. Alias: @
public Show public timelineExamples
--------Post status update:
gotweet -u=username -p=password p "My status update"Show mentions:
gotweet -u=username -p=password @
Show friends timeline:
gotweet -u=username -p=password
* * *
Made by [Coding Robots](http://www.codingrobots.com).