Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Raspberry Pi Embedded Projects Hotshot

You're reading from   Raspberry Pi Embedded Projects Hotshot Enter the world of mechatronic systems with the Raspberry Pi to design and build 12 amazing projects

Arrow left icon
Product type Paperback
Published in Feb 2015
Publisher
ISBN-13 9781849696227
Length 250 pages
Edition 1st Edition
Concepts
Arrow right icon
Toc

Table of Contents (15) Chapters Close

Preface 1. Hello World FREE CHAPTER 2. A Raspberry WebIDE Example 3. The Arduino Raspberry Pi Interface 4. Christmas Light Sequencer 5. Internet of Things Example – An E-mail Alert Water Fountain 6. Raspberry Pi as a Personal Assistant 7. Raspberry Pi-based Line Following Robot 8. Connect Four Desktop Game using Raspberry Pi 9. The Raspberry Pi-enabled Pet/Wildlife Monitor 10. Raspberry Pi Personal Health Monitor 11. Home Automation using Raspberry Pi 12. Using a Raspberry Pi for Science and Education 13. Tips and Tricks Index

Improving your vocabulary using the Raspberry Pi

As an example of self-improvement using the Raspberry Pi, we will implement an example that retrieves the word of the day using the Wordnik API (https://www.wordnik.com/).

Prepare for lift off

We need to install the Wordnik Python client (distributed under the Apache License) available as a Python package:

sudo pip install wordnik

The next step is to obtain an API key to make use of the API. This can be obtained by registering for an account with Wordnik and requesting an API key (http://developer.wordnik.com/).

Once the installation is complete, it is time to review the example.

Note

The Wordnik API is merely being demonstrated as an example. Refer to the API terms of agreement to determine how the API can be used in a commercial application.

Engage thrusters

  1. Let's review an example that fetches the word of the day using the Wordnik API. The first step is to import the Wordnik Python client:
    from wordnik import *
  2. The next step is to create a...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime