https://github.com/nishanths/lyft
Create and manage Lyft rides from the command line
https://github.com/nishanths/lyft
cli go lyft
Last synced: 10 months ago
JSON representation
Create and manage Lyft rides from the command line
- Host: GitHub
- URL: https://github.com/nishanths/lyft
- Owner: nishanths
- License: bsd-3-clause
- Created: 2017-11-10T02:47:41.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-06-07T19:33:48.000Z (over 5 years ago)
- Last Synced: 2025-03-01T06:31:51.760Z (11 months ago)
- Topics: cli, go, lyft
- Language: Go
- Homepage: https://godoc.org/github.com/nishanths/lyft
- Size: 1.17 MB
- Stars: 36
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## lyft
[](https://godoc.org/github.com/nishanths/lyft)
[](https://travis-ci.org/nishanths/lyft)
Create and manage Lyft rides from the command line.
```sh
# Install
go get github.com/nishanths/lyft
# Set up env vars (see 'Setup' heading below)
export GOOG_GEOCODE_KEY=
export LYFT_CLIENT_ID=
export LYFT_CLIENT_SECRET=
# Manage rides
lyft ride create
lyft ride cancel
lyft ride status
# Save places for future use when creating rides
lyft place add
lyft place remove ...
lyft place show [name]
# Help
lyft -help # or https://godoc.org/github.com/nishanths/lyft
```
Lyft Line isn't available on Lyft's web application (October 2017),
but this program can help you order Line rides from your computer.
## Setup
The program uses the following environment variables.
```
GOOG_GEOCODE_KEY
LYFT_CLIENT_ID
LYFT_CLIENT_SECRET
```
Refer to the [Setup](https://godoc.org/github.com/nishanths/lyft#hdr-Setup)
section in godoc to set these up.
## Example

## License
BSD 3-Clause.
Built with [`lyft-go`](https://github.com/nishanths/lyft-go).