# PyPortal Word of the Day Display

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/075/012/medium800thumb/lcds___displays_word_gif.jpg?1556321148)

Expand your vocabulary by learning a new word every day with this PyPortal-powered display!

Using the Wordnik API and the Adafruit PyPortal, we'll display Wordnik's [Word of the Day](https://www.wordnik.com/word-of-the-day), a daily curated word picked by the [Wordnik website](https://www.wordnik.com/). With CircuitPython and the on-board WiFi, the PyPortal Word of the Day display dynamically loads JSON formatted data from the [Wordnik API](https://developer.wordnik.com/). Each day a new word, its part of speech, definition and an example sentence will appear on the display with just a couple touches, ready for your brain to soak it up!

Info: 

## Parts
You can pick up an Adafruit PyPortal and a USB cable (if needed). If you like, you can mount the PyPortal in the Adafruit laser-cut acrylic stand. All these parts are bundled in AdaBox 011 if you'd like to buy them together.&nbsp;

Instead of AdaBox 011, you can buy parts separately:

### Adafruit PyPortal - CircuitPython Powered Internet Display

[Adafruit PyPortal - CircuitPython Powered Internet Display](https://www.adafruit.com/product/4116)
 **PyPortal** , our easy-to-use IoT device that allows you to create all the things for the “Internet of Things” in minutes. Make custom touch screen interface GUIs, all open-source, and Python-powered using&nbsp;tinyJSON / APIs to get news, stock, weather, cat photos,...

In Stock
[Buy Now](https://www.adafruit.com/product/4116)
[Related Guides to the Product](https://learn.adafruit.com/products/4116/guides)
![Front view of a Adafruit PyPortal - CircuitPython Powered Internet Display with a pyportal logo image on the display. ](https://cdn-shop.adafruit.com/640x480/4116-00.jpeg)

### USB cable - USB A to Micro-B

[USB cable - USB A to Micro-B](https://www.adafruit.com/product/592)
This here is your standard A to micro-B USB cable, for USB 1.1 or 2.0. Perfect for connecting a PC to your Metro, Feather, Raspberry Pi or other dev-board or microcontroller

Approximately 3 feet / 1 meter long

Out of Stock
[Buy Now](https://www.adafruit.com/product/592)
[Related Guides to the Product](https://learn.adafruit.com/products/592/guides)
![USB cable - USB A to Micro-B - 3 foot long](https://cdn-shop.adafruit.com/640x480/592-01.jpg)

## Optional
### Adafruit PyPortal Desktop Stand Enclosure Kit

[Adafruit PyPortal Desktop Stand Enclosure Kit](https://www.adafruit.com/product/4146)
PyPortal is&nbsp;our easy-to-use IoT device that allows you to create all the things for the “Internet of Things” in minutes. Create little pocket universes of joy that connect to something good.

And now that you've made a cool internet-connected project...

In Stock
[Buy Now](https://www.adafruit.com/product/4146)
[Related Guides to the Product](https://learn.adafruit.com/products/4146/guides)
![Demo Shot of the Assembled Adafruit PyPortal Desktop Stand Enclosure Kit.](https://cdn-shop.adafruit.com/640x480/4146-03.jpg)

# PyPortal Word of the Day Display

## Install CircuitPython

[CircuitPython](https://github.com/adafruit/circuitpython) is a derivative of [MicroPython](https://micropython.org) designed to simplify experimentation and education on low-cost microcontrollers. It makes it easier than ever to get prototyping by requiring no upfront desktop software downloads. Simply copy and edit files on the **CIRCUITPY** &nbsp;"flash" drive to iterate.

The following instructions will show you how to install CircuitPython. If you've already installed CircuitPython but are looking to update it or reinstall it, the same steps work for that as well!

## Set up CircuitPython Quick Start!

Follow this quick step-by-step for super-fast Python power :)

[Download the latest version of CircuitPython for the PyPortal via CircuitPython.org](https://circuitpython.org/board/pyportal/)
[Download the latest version of CircuitPython for the PyPortal Pynt via CircuitPython.org](https://circuitpython.org/board/pyportal_pynt/)
 **Click the link above to download the latest version of CircuitPython for the PyPortal.**

Download and save it to your desktop (or wherever is handy).

![circuitpython_pyportal-uf2.png](https://cdn-learn.adafruit.com/assets/assets/000/073/615/medium640/circuitpython_pyportal-uf2.png?1553610968)

Plug your PyPortal into your computer using a known-good USB cable.

**A lot of people end up using charge-only USB cables and it is very frustrating! So make sure you have a USB cable you know is good for data sync.**

Double-click the **Reset** button on the top in the middle (magenta arrow) on your board, and you will see the NeoPixel RGB LED (green arrow) turn green. If it turns red, check the USB cable, try another USB port, etc.&nbsp; **Note:** The little red LED next to the USB connector will pulse red. That's ok!

If double-clicking doesn't work the first time, try again. Sometimes it can take a few tries to get the rhythm right!

![circuitpython_PyPortalResetNeoPIxel.jpg](https://cdn-learn.adafruit.com/assets/assets/000/071/993/medium640/circuitpython_PyPortalResetNeoPIxel.jpg?1551213425)

You will see a new disk drive appear called **PORTALBOOT**.

Drag the **adafruit-circuitpython-pyportal-\<whatever\>.uf2** file to **PORTALBOOT.**

![circuitpython_PyPortal_PORTALBOOT.png](https://cdn-learn.adafruit.com/assets/assets/000/072/029/medium640/circuitpython_PyPortal_PORTALBOOT.png?1551287972)

![circuitpython_PyPortal_Drag_UF2.png](https://cdn-learn.adafruit.com/assets/assets/000/072/030/medium640/circuitpython_PyPortal_Drag_UF2.png?1551287983)

The LED will flash. Then, the **PORTALBOOT** drive will disappear and a new disk drive called **CIRCUITPY** will appear.

If you haven't added any code to your board, the only file that will be present is **boot\_out.txt**. This is absolutely normal! It's time for you to add your **code.py** and get started!

That's it, you're done! :)

![circuitpython_PyPortalCIRCUITPY.png](https://cdn-learn.adafruit.com/assets/assets/000/071/995/medium640/circuitpython_PyPortalCIRCUITPY.png?1551213875)

## PyPortal Default Files

Click below to download a zip of the files that shipped on the PyPortal or PyPortal Pynt.

[PyPortal Default Files](https://github.com/adafruit/circuitpython-default-files/tree/main/boards/pyportal/4.x)
[PyPortal Pynt Default Files](https://github.com/adafruit/circuitpython-default-files/tree/main/boards/pyportal_pynt/5.x)
# PyPortal Word of the Day Display

## PyPortal CircuitPython Setup

To use all the amazing features of your PyPortal with CircuitPython, you must first install a number of libraries. This page covers that process.

# Adafruit CircuitPython Bundle

Download the Adafruit CircuitPython Library Bundle. You can find the latest release here:

[Latest Adafruit CircuitPython Library Bundle](https://circuitpython.org/libraries)
Download the **adafruit-circuitpython-bundle-\*.x-mpy-\*.zip** bundle zip file where **\*.x MATCHES THE VERSION OF CIRCUITPYTHON YOU INSTALLED** , and unzip a folder of the same name. Inside you'll find a **lib** folder. You have two options:

- You can add the **lib** folder to your **CIRCUITPY** drive. This will ensure you have _all the drivers_. But it will take a bunch of space on the 8 MB disk  
- Add each library as you need it, this will reduce the space usage but you'll need to put in a little more effort.

At a minimum we recommend the following libraries, in fact we more than recommend. They're basically required. So grab them and install them into **CIRCUITPY/lib** now!

- **adafruit\_esp32spi** - This is the library that gives you internet access via the ESP32 using (you guessed it!) SPI transport. You need this for anything Internet
- **adafruit\_requests** - This library allows us to perform HTTP requests and get responses back from servers. GET/POST/PUT/PATCH - they're all in here!
- adafruit\_connection\_manager - used by adafruit\_requests.
- **adafruit\_pyportal** - This is our friendly wrapper library that does a lot of our projects, displays graphics and text, fetches data from the internet. Nearly all of our projects depend on it!
- **adafruit\_portalbase** &nbsp;- This library is the base library that adafruit\_pyportal library is built on top of.
- **adafruit\_touchscreen** - a library for reading touches from the resistive touchscreen. Handles all the analog noodling, rotation and calibration for you.
- **adafruit\_io** - this library helps connect the PyPortal to our free datalogging and viewing service
- **adafruit\_imageload** - an image display helper, required for any graphics!
- **adafruit\_display\_text** - not surprisingly, it displays text on the screen
- **adafruit\_bitmap\_font** - we have fancy font support, and its easy to make new fonts. This library reads and parses font files.
- **adafruit\_slideshow** - for making image slideshows - handy for quick display of graphics and sound
- **neopixel** - for controlling the onboard neopixel
- **adafruit\_adt7410** - library to read the temperature from the on-board Analog Devices ADT7410 precision temperature sensor (not necessary for Titano or Pynt)
- **adafruit\_bus\_device** - low level support for I2C/SPI
- **adafruit\_fakerequests** &nbsp;- This library allows you to create fake HTTP requests by using local files.

# PyPortal Word of the Day Display

## Create Your settings.toml File

CircuitPython works with WiFi-capable boards to enable you to make projects that have network connectivity. This means working with various passwords and API keys. As of [CircuitPython 8](https://circuitpython.org/downloads), there is support for a **settings.toml** file. This is a file that is stored on your **CIRCUITPY** drive, that contains all of your secret network information, such as your SSID, SSID password and any API keys for IoT services. It is designed to separate your sensitive information from your **code.py** file so you are able to share your code without sharing your credentials.

CircuitPython previously used a **secrets.py** file for this purpose. The **settings.toml** file is quite similar.

Warning: Your **settings.toml** file should be stored in the main directory of your **CIRCUITPY** drive. It should not be in a folder.

## CircuitPython **settings.toml** File

This section will provide a couple of examples of what your **settings.toml** file should look like, specifically for CircuitPython WiFi projects in general.

The most minimal **settings.toml** file must contain your WiFi SSID and password, as that is the minimum required to connect to WiFi. Copy this example, paste it into your **settings.toml** , and update:

- `your_wifi_ssid`
- `your_wifi_password`

```auto
CIRCUITPY_WIFI_SSID = "your_wifi_ssid"
CIRCUITPY_WIFI_PASSWORD = "your_wifi_password"
```

Many CircuitPython network-connected projects on the Adafruit Learn System involve using Adafruit IO. For these projects, you must _also_ include your Adafruit IO username and key. Copy the following example, paste it into your settings.toml file, and update:

- `your_wifi_ssid`
- `your_wifi_password`
- `your_aio_username`
- `your_aio_key`

```auto
CIRCUITPY_WIFI_SSID = "your_wifi_ssid"
CIRCUITPY_WIFI_PASSWORD = "your_wifi_password"
ADAFRUIT_AIO_USERNAME = "your_aio_username"
ADAFRUIT_AIO_KEY = "your_aio_key"
```

Some projects use different variable names for the entries in the **settings.toml** file. For example, a project might use `ADAFRUIT_AIO_ID` in the place of `ADAFRUIT_AIO_USERNAME`. **If you run into connectivity issues, one of the first things to check is that the names in the settings.toml file match the names in the code.**

Warning: Not every project uses the same variable name for each entry in the **settings.toml** file! Always verify it matches the code.

## **settings.toml** File Tips
Here is an example **settings.toml** file.

```auto
# Comments are supported
CIRCUITPY_WIFI_SSID = "guest wifi"
CIRCUITPY_WIFI_PASSWORD = "guessable"
CIRCUITPY_WEB_API_PORT = 80
CIRCUITPY_WEB_API_PASSWORD = "passw0rd"
test_variable = "this is a test"
thumbs_up = "\U0001f44d"
```

In a **settings.toml** file, it's important to keep these factors in mind:

- Strings are wrapped in double quotes; ex: `"your-string-here"`
- Integers are _ **not** _ quoted and may be written in decimal with optional sign (`+1`, `-1`, `1000`) or hexadecimal (`0xabcd`).
  - Floats (decimal numbers), octal (`0o567`) and binary (`0b11011`) are not supported.

- Use `\u` escapes for weird characters, `\x` and `\ooo` escapes are not available in **.toml** files
  - Example: `\U0001f44d` for 👍 (thumbs up emoji) and `\u20ac` for € (EUR sign)

- Unicode emoji, and non-ASCII characters, stand for themselves as long as you're careful to save in "UTF-8 without BOM" format

&nbsp;

&nbsp;

When your&nbsp; **settings.toml&nbsp;** file is ready, you can save it in your text editor with the **.toml** &nbsp;extension.

![adafruit_products_dotToml.jpg](https://cdn-learn.adafruit.com/assets/assets/000/117/071/medium640/adafruit_products_dotToml.jpg?1671034293)

## Accessing Your **settings.toml** Information in **code.py**
In your **code.py** file, you'll need to `import` the `os` library to access the **settings.toml** file. Your settings are accessed with the `os.getenv()` function. You'll pass your settings entry to the function to import it into the **code.py** file.

```python
import os

print(os.getenv("test_variable"))
```

![](https://cdn-learn.adafruit.com/assets/assets/000/117/072/medium800/adafruit_products_tomlOutput.jpg?1671034496)

In the upcoming CircuitPython WiFi examples, you'll see how the **settings.toml&nbsp;** file is used for connecting to your SSID and accessing your API keys.

# PyPortal Word of the Day Display

## Internet Connect!

# Connect to WiFi

OK, now that you have your&nbsp; **settings.toml** file set up - you can connect to the Internet.

To do this, you need to first install a few libraries, into the lib folder on your **CIRCUITPY** drive. Then you need to update **code.py** with the example script.

Thankfully, we can do this in one go. In the example below, click the **Download Project Bundle** button below to download the necessary libraries and the **code.py** file in a zip file. Extract the contents of the zip file, open the directory **examples/** and then click on the directory that matches the version of CircuitPython you're using and copy the contents of that directory to your **CIRCUITPY** drive.

Your **CIRCUITPY** drive should now look similar to the following image:

![CIRCUITPY](https://adafruit.github.io/Adafruit_CircuitPython_Bundle/esp32spi_esp32spi_simpletest.py.png )

Info: Update to CircuitPython 9.2.x or later to use this example.

https://github.com/adafruit/Adafruit_CircuitPython_ESP32SPI/blob/main/examples/esp32spi_simpletest.py

And save it to your board, with the name **code.py**.

Don't forget you'll also need to create the **settings.toml** file as seen above, with your WiFi ssid and password.

In a serial console, you should see something like the following. For more information about connecting with a serial console, view the guide [Connecting to the Serial Console](https://learn.adafruit.com/welcome-to-circuitpython/kattni-connecting-to-the-serial-console).

```terminal
&gt;&gt;&gt; import wifitest
ESP32 SPI webclient test
ESP32 found and in idle mode
Firmware vers. 1.7.5
MAC addr: 24:C9:DC:BD:0F:3F
	HomeNetwork             RSSI: -46
	HomeNetwork             RSSI: -76
	Fios-12345              RSSI: -92
	FiOS-AB123              RSSI: -92
	NETGEAR53               RSSI: -93
Connecting to AP...
Connected to HomeNetwork 	RSSI: -45
My IP address is 192.168.1.245
IP lookup adafruit.com: 104.20.39.240
Ping google.com: 30 ms
Fetching text from http://wifitest.adafruit.com/testwifi/index.html
----------------------------------------
This is a test of Adafruit WiFi!
If you can read this, its working :)
----------------------------------------

Fetching json from http://wifitest.adafruit.com/testwifi/sample.json
----------------------------------------
{'fun': True, 'company': 'Adafruit', 'founded': 2005, 'primes': [2, 3, 5], 'pi': 3.14, 'mixed': [False, None, 3, True, 2.7, 'cheese']}
----------------------------------------
Done!
```

Going over the example above, here's a breakdown of what the program is doing:

- Initialize the ESP32 over SPI using the SPI port and 3 control pins:

```python
esp32_cs = DigitalInOut(board.ESP_CS)
esp32_ready = DigitalInOut(board.ESP_BUSY)
esp32_reset = DigitalInOut(board.ESP_RESET)

#...

else:
    spi = busio.SPI(board.SCK, board.MOSI, board.MISO)
esp = adafruit_esp32spi.ESP_SPIcontrol(spi, esp32_cs, esp32_ready, esp32_reset)
```

- Get the socket pool and the SSL context, and then tell the `adafruit_requests` library about them.

```python
pool = adafruit_connection_manager.get_radio_socketpool(esp)
ssl_context = adafruit_connection_manager.get_radio_ssl_context(esp)
requests = adafruit_requests.Session(pool, ssl_context)
```

- Verify an ESP32 is found, checks the firmware and MAC address

```auto
if esp.status == adafruit_esp32spi.WL_IDLE_STATUS:
    print("ESP32 found and in idle mode")
print("Firmware vers.", esp.firmware_version)
print("MAC addr:", ":".join("%02X" % byte for byte in esp.MAC_address))
```

- Perform a scan of all access points it can see and print out the name and signal strength.

```python
for ap in esp.scan_networks():
    print("\t%-23s RSSI: %d" % (ap.ssid, ap.rssi))
```

- Connect to the AP we've defined here, then print out the local IP address. Then attempt to do a domain name lookup and ping google.com to check network connectivity. (Note sometimes the ping fails or takes a while; this isn't a big deal.)

```python
print("Connecting to AP...")
while not esp.is_connected:
    try:
        esp.connect_AP(ssid, password)
    except OSError as e:
        print("could not connect to AP, retrying: ", e)
        continue
print("Connected to", esp.ap_info.ssid, "\tRSSI:", esp.ap_info.rssi)
print("My IP address is", esp.ipv4_address)
print(
    "IP lookup adafruit.com: %s" % esp.pretty_ip(esp.get_host_by_name("adafruit.com"))
)
```

Now we're getting to the really interesting part of the example program. We've written a library for web fetching web data, named [adafruit\_requests](https://github.com/adafruit/Adafruit_CircuitPython_Requests). It is a lot like the regular Python library named [requests](https://requests.readthedocs.io/en/latest/). This library allows you to send HTTP and HTTPS requests easily and provides helpful methods for parsing the response from the server.

- Here is the part of the example program is fetching text data from a URL.

```python
TEXT_URL = "http://wifitest.adafruit.com/testwifi/index.html"  # Further up in the program

# ...

print("Fetching text from", TEXT_URL)
r = requests.get(TEXT_URL)
print('-' * 40)
print(r.text)
print('-' * 40)
r.close()
```

- Finally, here the program is fetching some JSON data. The `adafruit_requests` library will parse the JSON into a Python dictionary whose structure is the same as the structure of the JSON.

```auto
JSON_URL = "http://wifitest.adafruit.com/testwifi/sample.json"   # Further up in the program

# ...

print("Fetching json from", JSON_URL)
r = requests.get(JSON_URL)
print('-' * 40)
print(r.json())
print('-' * 40)
r.close()
```

# Advanced Requests Usage

Want to send custom HTTP headers, parse the response as raw bytes, or handle a response's http status code in your CircuitPython code?

We've written an&nbsp;example to show advanced usage of the requests module below.

To use with CircuitPython, you need to first install a few libraries, into the lib folder on your **CIRCUITPY** drive. Then you need to update **code.py** with the example script.

Thankfully, we can do this in one go. In the example below, click the **Download Project Bundle** button below to download the necessary libraries and the **code.py** file in a zip file. Extract the contents of the zip file, open the directory **examples/** and then click on the directory that matches the version of CircuitPython you're using and copy the contents of that directory to your **CIRCUITPY** drive.

https://github.com/adafruit/Adafruit_CircuitPython_Requests/blob/main/examples/esp32spi/requests_esp32spi_advanced.py

Your **CIRCUITPY** drive should now look similar to the following image:

![CIRCUITPY](https://adafruit.github.io/Adafruit_CircuitPython_Bundle/requests_esp32spi_requests_esp32spi_advanced.py.png )

# WiFi Manager

The way the examples above connect to WiFi works but it's a little finicky. Since WiFi is not necessarily so reliable, you may have disconnects and need to reconnect. For more advanced uses, we recommend using the `WiFiManager` class. It will wrap the connection/status/requests loop for you - reconnecting if WiFi drops, resetting the ESP32 if it gets into a bad state, etc.

Here's a more advanced example that shows using the `WiFiManager` and also how to fetch the current time from a web source.

https://github.com/adafruit/Adafruit_CircuitPython_ESP32SPI/blob/main/examples/esp32spi_localtime.py

# Further Information

For more information on the basics of doing networking in CircuitPython, see this guide:

### Networking in CircuitPython

[Networking in CircuitPython](https://learn.adafruit.com/networking-in-circuitpython)
# PyPortal Word of the Day Display

## Code PyPortal with CircuitPython

## CircuitPython Code

In the embedded code element below, click on the&nbsp; **Download Project Bundle** button, and save the .zip archive file to your computer.

Then, uncompress the .zip file, it will unpack to a folder named&nbsp; **PyPortal\_Word\_of\_the\_Day**.

Copy the contents of the&nbsp; **PyPortal\_Word\_of\_the\_Day** directory to your PyPortal **CIRCUITPY** drive.

![](https://cdn-learn.adafruit.com/assets/assets/000/074/407/medium800/lcds___displays_circuitpython_Untitled.png?1555099784)

https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/main/PyPortal/PyPortal_Word_of_the_Day/code.py

This is what the final contents of the **CIRCUITPY** drive will look like:

![CIRCUITPY](https://adafruit.github.io/Adafruit_Learning_System_Guides/PyPortal_PyPortal_Word_of_the_Day.png )

## The Wordnik API

Wordnik is where we'll be grabbing our word of the day data from to display on the PyPortal.

A bit about Wordnik from their [website](https://www.wordnik.com/about):

> Wordnik is the world's biggest online English&nbsp;[dictionary](https://www.wordnik.com/words/dictionary), by number of words.
> 
> Wordnik is a 501(c)(3) nonprofit organization, and our mission is to find and share as many words of English as possible with as many people as possible.

In order to use Wordnik's API and access their word data, we will need what's called an API key.

Info: 

## How to obtain an API key from Wordnik
To get an API key first make an account on the Wordnik website by clicking&nbsp;[here](https://www.wordnik.com/signup).

![lcds___displays_Screen_Shot_2019-04-12_at_4.37.59_PM.png](https://cdn-learn.adafruit.com/assets/assets/000/074/413/medium640/lcds___displays_Screen_Shot_2019-04-12_at_4.37.59_PM.png?1555101810)

- Next, head [here](https://developer.wordnik.com/) to sign up for an API key.
- If you donate $5 or more you can get the API key the same day.
- You can also get a key for free **but will have to wait one week to get it.**

![lcds___displays_Screen_Shot_2019-04-12_at_4.44.01_PM.png](https://cdn-learn.adafruit.com/assets/assets/000/074/414/medium640/lcds___displays_Screen_Shot_2019-04-12_at_4.44.01_PM.png?1555101882)

## Using the API key

After you've gotten your key from Wordnik in your email, it's time to add it to your **settings.toml** file:

```auto
CIRCUITPY_WIFI_SSID = "your_wifi_ssid"
CIRCUITPY_WIFI_PASSWORD = "your_wifi_password"
WORDNIK_TOKEN = "HUGE_LONG_WORDNIK_API_KEY"
```

Warning: 

## Title Sequence

When the PyPortal is turned on or reset, the following events occur.

- Display the title of the app, "Word of the Day" at the top of the display and the source "Wordnik.com/wordoftheday" at the bottom
- When screen is touched, display the word, part of speech, and definition with the source at the bottom.
- When screen is touched again,&nbsp;display the word, part of speech, and an example sentence with the word.&nbsp;

![lcds___displays_IMG_7431.jpg](https://cdn-learn.adafruit.com/assets/assets/000/075/009/medium640/lcds___displays_IMG_7431.jpg?1556321043)

![lcds___displays_IMG_7435.jpg](https://cdn-learn.adafruit.com/assets/assets/000/075/010/medium640/lcds___displays_IMG_7435.jpg?1556321056)

![lcds___displays_IMG_7434.jpg](https://cdn-learn.adafruit.com/assets/assets/000/075/011/medium640/lcds___displays_IMG_7434.jpg?1556321066)

![](https://cdn-learn.adafruit.com/assets/assets/000/075/013/medium800thumb/lcds___displays_word_gif.jpg?1556322315)

## How It Works

The PyPortal Word of the Day is doing a couple of nifty things to deliver your insightful vocabulary expanding experience!

### Background

First, it displays a bitmap graphic as the screen's background. This is a 320 x 240 pixel RGB 16-bit raster graphic in&nbsp; **.bmp** &nbsp;format. I found this image on [Pixabay](https://pixabay.com/vectors/scroll-old-blank-brown-paper-310783/) by user&nbsp;[Clker-Free-Vector-Images](https://pixabay.com/users/Clker-Free-Vector-Images-3736/) and turned it into a black and white scroll for ultimate word of the day background!

![](https://cdn-learn.adafruit.com/assets/assets/000/074/410/medium800/lcds___displays_guide_pic.jpg?1555100465)

## Font

First we see "Word of the Day" appear on the screen along with the source at the bottom.

The fonts used here are bitmap fonts made from the Arial Italic typeface. You can learn more about&nbsp;[converting type in this guide](https://learn.adafruit.com/custom-fonts-for-pyportal-circuitpython-display).

## Parsing JSON from the Web

The neat part is that the text is not coming from a file on the device, but rather it is grabbed from a website!

From the Wordnik API's&nbsp;[documentation](https://developer.wordnik.com/docs#!/words/getWordOfTheDay)&nbsp;for the word of the day, click the "Try it out!"&nbsp; button.

![lcds___displays_Screen_Shot_2019-04-12_at_6.30.12_PM.png](https://cdn-learn.adafruit.com/assets/assets/000/074/417/medium640/lcds___displays_Screen_Shot_2019-04-12_at_6.30.12_PM.png?1555108621)

- A link can be found in the Request URL section.&nbsp;
- Try copy and pasting the below link into your browser and replace "YOURAPIKEY" with key you were given form Wordnik.&nbsp;
- When this link is entered into a browser the JSON data for that word shows up!

![lcds___displays_Screen_Shot_2019-04-12_at_6.30.47_PM.png](https://cdn-learn.adafruit.com/assets/assets/000/074/419/medium640/lcds___displays_Screen_Shot_2019-04-12_at_6.30.47_PM.png?1555108710)

`https://api.wordnik.com/v4/words.json/wordOfTheDay?api_key=YOURAPIKEY`

You may see a large mess of numbers, letters and symbols. This is JSON data!

Head [here](https://codebeautify.org/jsonviewer) to beautify the code so we can actually read it!

"Beautified" code:

```
{
  "_id": "5cab62b93cc5c96eb3afa5bf",
  "word": "adiaphoron",
  "contentProvider": {
    "name": "wordnik",
    "id": 711
  },
  "definitions": [
    {
      "source": "wiktionary",
      "text": "An indifferent matter.",
      "note": null,
      "partOfSpeech": "noun"
    },
    {
      "source": "wiktionary",
      "text": "A matter that is morally neutral.",
      "note": null,
      "partOfSpeech": "noun"
    },
    {
      "source": "wiktionary",
      "text": "Something neither forbidden nor commanded by scripture.",
      "note": null,
      "partOfSpeech": "noun"
    },
    {
      "source": "century",
      "text": "In theology and ethics, a thing indifferent; a tenet or practice which may be considered non-essential.",
      "note": null,
      "partOfSpeech": "noun"
    }
  ],
  "publishDate": "2019-04-12T03:00:00.000Z",
  "examples": [
    {
      "url": "http://api.wordnik.com/v4/mid/e1284319bcc8eed2b40528c240f6d69376b90187bd37ec0240e9907527a238de12ff8f433fbda52a4181ae99f4ade604",
      "title": "Historical Introductions to the Symbolical Books of the Evangelical Lutheran Church",
      "text": "For if the condition is good, the adiaphoron, too, is good, and its observance is commanded.",
      "id": 1090967175
    },
    {
      "url": "http://api.wordnik.com/v4/mid/6542bbb01a6a8314704c23814788a11d6197fd480404393c5fbd590e84fe27d6ad9ae69016e66722bfa1d945c00d2a61",
      "title": "Apology of the Augsburg Confession",
      "text": "For Augustine, in a long discussion refutes the opinion of those who thought that concupiscence in man is not a fault but an adiaphoron, as color of the body or ill health is said to be an adiaphoron [as to have a black or a white body is neither good nor evil].",
      "id": 1158602656
    }
  ],
  "pdd": "2019-04-12",
  "note": "The word 'adiaphoron' comes from a Greek word meaning 'indifferent'.",
  "htmlExtra": null
}
```

If we look through the JSON file, we'll see a&nbsp; **key** &nbsp;called&nbsp;`word`, and two others called `definitions`&nbsp;and `examples`&nbsp;each with a sub-tree below it hierarchically called&nbsp;`0`&nbsp;. Within the&nbsp;`definitions` key we see the two&nbsp; **key value** &nbsp;pairs that we want:&nbsp;`text`&nbsp;that has the contents&nbsp;of the word's definition,&nbsp;`"An indifferent matter"`&nbsp;and&nbsp;`"partOfSpeech"`&nbsp;with the contents of&nbsp;`"noun"`. In the&nbsp;`examples`&nbsp;key we want&nbsp;`text`&nbsp;which has the contents of&nbsp;`"For if the condition is good, the adiaphoron, too, is good, and its observance is commanded."`

The raw JSON for these&nbsp; **key : value** &nbsp;pairs look like this:

```
"word":"adiaphoron""text":"An indifferent matter""partOfSpeech":"noun""text":"For if the condition is good, the adiaphoron, too, is good, and its observance is commanded."
```

Our CircuitPython code is able to grab and parse this data using these variables:

```
PART_OF_SPEECH = ['definitions', 0, 'partOfSpeech']
DEF_LOCATION = ['definitions', 0, 'text']
EXAMPLE_LOCATION = ['examples', 0, 'text']
```

\*word data is called directly in the&nbsp;`while`&nbsp;loop

## Parsing local JSON files&nbsp;

If you would like to avoid pulling data from a web page or maybe you don't feel like waiting for an API key, you can use a "local" JSON file to pull data from.

To implement this local data sourcing method, create a new file and name it `local.txt`. Populate this file with the JSON data that you would like to use. For example, you could use the JSON data provided above and make sure the format of the data is the same. Save this file on the CIRCUITPY drive in the root.&nbsp;

**You should not need to change anything in your code.**

And that's it! The JSON data will now be pulled from this local file!

## PyPortal Constructor

When we set up the&nbsp;`pyportal`&nbsp;constructor, we are providing it with these things:

- `url`&nbsp;to query
- `json_path`&nbsp;to traverse and find the key:value pair we need
- `status_neopixel`&nbsp;pin
- `default_bg`&nbsp;path and name to display the background bitmap
- `text_font`&nbsp;path and name to the font used for displaying the follower count value
- `text_position`&nbsp;on the screen's x/y coordinate system
- `text_color`
- `caption_text`&nbsp;to display statically -- in this case the name of the repo
- `caption_font`
- `caption_position`
- `caption_color`

## Fetch

With the pyportal set up, we can then use&nbsp;`pyportal.fetch()`&nbsp;to do the query and parsing of the three pieces of Wordnik data and then display them on screen along with the caption text on top of the background image.

## Customization

You can customize this project to make it your own and point to different website APIs as the source of your JSON data, as well as adjust the graphics and text.

## Text Position

Depending on the design of your background bitmap and the length of the text you're displaying, you may want to reposition the text and caption. You can do this with the&nbsp;`text_position`and&nbsp;`caption_position`&nbsp;options.

The PyPortal's display is 320 pixels wide and 240 pixels high. In order to refer to those positions on the screen, we use an x/y coordinate system, where x is horizontal and y is vertical.

The origin of this coordinate system is the upper left corner. This means that a pixel placed at the upper left corner would be (0,0) and the lower right corner would be (320, 240).

![](https://cdn-learn.adafruit.com/assets/assets/000/074/424/medium800/lcds___displays_image.png?1555109863)

## Text Color

Another way to customize Word of the Day is to adjust the color of the text. The line&nbsp;`text_color=0xFFFFFF`&nbsp;in the constructor shows how. You will need to use the hexidecimal value for any color you want to display.

You can use something like&nbsp;[https://htmlcolorcodes.com/](https://htmlcolorcodes.com/)&nbsp;to pick your color and then copy the hex value, in this example it would be&nbsp;`0x0ED9EE`

![](https://cdn-learn.adafruit.com/assets/assets/000/074/425/medium800/lcds___displays_image.png?1555109978)

## Background Image

If you would like to create your own background, awesome! You'll want to save the file with these specifications:

- 320 x 240 pixels
- 16-bit RGB color
- Save file as .bmp format

You can then copy the .bmp file to the root level of the&nbsp; **CIRCUITPY** &nbsp;drive. Make sure you refer to this new filename in the pyportal constructor line:

`default_bg=cwd+ "/wordoftheday_background.bmp"`

Change that line to use the new filename name, such as:

`default_bg=cwd+"/my_new_background.bmp"`

## Main loop

`while True:`

In the&nbsp; **repeating** &nbsp;main loop, the following actions are performed:

1. Check to see if the screen was&nbsp; **touched**
2. If screen was touched, display the word, part of speech, and definition with the source at the bottom.
3. If the screen was touched again, display the word, part of speech, and an example sentence with the word.&nbsp;
4. Any further screen touches will continue to switch between displaying the word's definition and example.

# Going Further

How can the app be modified to give even more knowledge on the words?

The Wordnik API has [many more features](https://developer.wordnik.com/docs#/word)&nbsp;including:

- Audio pronunciations
- Hyphenations
- Scrabble scores

![](https://cdn-learn.adafruit.com/assets/assets/000/074/823/medium800/lcds___displays_Screen_Shot_2019-04-23_at_4.10.27_PM.png?1556050243)


## Featured Products

### AdaBox011 - PyPortal

[AdaBox011 - PyPortal](https://www.adafruit.com/product/4061)
Reach out beyond your desk - to the stars and beyond - with **PyPortal**! This ADABOX features a new, easy-to-use IoT device that allows you to customize and create your very own "Internet of Things" portal. We take CircuitPython to the max, pairing a SAMD51 chip with a...

No Longer Stocked
[Buy Now](https://www.adafruit.com/product/4061)
[Related Guides to the Product](https://learn.adafruit.com/products/4061/guides)
### Adafruit PyPortal - CircuitPython Powered Internet Display

[Adafruit PyPortal - CircuitPython Powered Internet Display](https://www.adafruit.com/product/4116)
 **PyPortal** , our easy-to-use IoT device that allows you to create all the things for the “Internet of Things” in minutes. Make custom touch screen interface GUIs, all open-source, and Python-powered using&nbsp;tinyJSON / APIs to get news, stock, weather, cat photos,...

In Stock
[Buy Now](https://www.adafruit.com/product/4116)
[Related Guides to the Product](https://learn.adafruit.com/products/4116/guides)
### USB cable - USB A to Micro-B

[USB cable - USB A to Micro-B](https://www.adafruit.com/product/592)
This here is your standard A to micro-B USB cable, for USB 1.1 or 2.0. Perfect for connecting a PC to your Metro, Feather, Raspberry Pi or other dev-board or microcontroller

Approximately 3 feet / 1 meter long

Out of Stock
[Buy Now](https://www.adafruit.com/product/592)
[Related Guides to the Product](https://learn.adafruit.com/products/592/guides)
### Adafruit PyPortal Desktop Stand Enclosure Kit

[Adafruit PyPortal Desktop Stand Enclosure Kit](https://www.adafruit.com/product/4146)
PyPortal is&nbsp;our easy-to-use IoT device that allows you to create all the things for the “Internet of Things” in minutes. Create little pocket universes of joy that connect to something good.

And now that you've made a cool internet-connected project...

In Stock
[Buy Now](https://www.adafruit.com/product/4146)
[Related Guides to the Product](https://learn.adafruit.com/products/4146/guides)

## Related Guides

- [Adafruit PyPortal - IoT for CircuitPython](https://learn.adafruit.com/adafruit-pyportal.md)
- [PyPaint Drawing Program In CircuitPython](https://learn.adafruit.com/pypaint.md)
- [PyPortal US Election Calendar](https://learn.adafruit.com/pyportal-electioncal-us.md)
- [AdaBox 011](https://learn.adafruit.com/adabox011.md)
- [PyPortal ISS Tracker](https://learn.adafruit.com/pyportal-iss-tracker.md)
- [Making a PyPortal User Interface with DisplayIO](https://learn.adafruit.com/making-a-pyportal-user-interface-displayio.md)
- [Twin Peaks Light Reactive Picture Frame](https://learn.adafruit.com/twin-peaks-light-reactive-pyportal-picture-frame.md)
- [PyPortal Cutefuzz Image Viewer](https://learn.adafruit.com/pyportal-cutefuzz-image-viewer.md)
- [PyPortal Trivia Time with the Open Trivia Database](https://learn.adafruit.com/pyportal-trivia-time-open-trivia-database.md)
- [CircuitPython Turtle Graphics](https://learn.adafruit.com/circuitpython-turtle-graphics.md)
- [Program CircuitPython USB Devices with iPhone & iPad](https://learn.adafruit.com/use-circuitpython-devices-with-iphone-ipad.md)
- [PyPortal IoT Weather Station](https://learn.adafruit.com/pyportal-iot-weather-station.md)
- [Use circup to easily keep your CircuitPython libraries up to date](https://learn.adafruit.com/keep-your-circuitpython-libraries-on-devices-up-to-date-with-circup.md)
- [Pathfinder Robot Companion](https://learn.adafruit.com/pathfinder.md)
- [PyPortal IoT Plant Monitor with Google Cloud IoT Core and CircuitPython](https://learn.adafruit.com/pyportal-iot-plant-monitor-with-google-cloud-iot-core-and-circuitpython.md)
- [PyPortal IoT Plant Monitor with Microsoft Azure IoT and CircuitPython](https://learn.adafruit.com/using-microsoft-azure-iot-with-circuitpython.md)
