From 5b2472e671fe5384b8ce198f6f0101c03d206acb Mon Sep 17 00:00:00 2001 From: tylerw Date: Tue, 23 Aug 2011 16:41:05 -0400 Subject: [PATCH] spell scotty's name correctly, know the alphabet, re-order readme a teensy bit --- AUTHORS | 4 ++-- README.md | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/AUTHORS b/AUTHORS index 6c0e27d..eb71dfa 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3,6 +3,6 @@ pyechonest. The names are sorted alphabetically by last name. Reid Draper Ben Lacker -Scotty Verco -Tyler Williams +Scotty Vercoe Brian Whitman +Tyler Williams \ No newline at end of file diff --git a/README.md b/README.md index d66e3a9..77cc6d1 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,16 @@ Pyechonest is an open source Python library for the Echo Nest API. With Pyechon * **song** - search songs by artist, title, description, or attribute (tempo, duration, etc) and get detailed information back about each song, such as hotttnesss, audio_summary, or tracks. * **track** - upload a track to the Echo Nest and receive summary information about the track including key, duration, mode, tempo, time signature along with detailed track info including timbre, pitch, rhythm and loudness information. +## Install +There are a few different ways you can install pyechonest: + +* Use setuptools: "easy_install -U pyechonest" +* Download the zipfile from the [downloads](https://github.com/echonest/pyechonest/archives/master) page and install it. +* Checkout the source: "git clone git://github.com/echonest/pyechonest.git" and install it yourself. + ## Getting Started * Install Pyechonest - * **Get an API key** - to use the Echo Nest API you need an Echo Nest API key. You can get one for free at [developer.echonest.com](http://developer.echonest.com) + * **Get an API key** - to use the Echo Nest API you need an Echo Nest API key. You can get one for free at [developer.echonest.com](http://developer.echonest.com). * **Set the API** key - you can do this one of two ways: * set an environment variable named ECHO_NEST_API_KEY to your API key * Include this snippet of code at the beginning of your python scripts: @@ -18,13 +25,6 @@ Pyechonest is an open source Python library for the Echo Nest API. With Pyechon config.ECHO_NEST_API_KEY="YOUR API KEY" * Check out the [docs](http://echonest.github.com/pyechonest/) and examples below. -## Install -There are a few different ways you can install pyechonest: - - * Use setuptools: "easy_install -U pyechonest" - * Download the zipfile from the [downloads](https://github.com/echonest/pyechonest/archives/master) page and install it. - * Checkout the source: "git clone git://github.com/echonest/pyechonest.git" and install it yourself. - ## Examples *All examples assume you have already setup your api key!*