Best Flask open-source libraries and packages

Tweet Finder

A website to showcase Tweets, using React, Flask and Redis, view live on Heroku
Updated 2 years ago

Tweet Finder

A website to showcase Tweets using React, Flask, and Redis.

View live on Heroku HERE.


&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp


This project was bootstrapped with Create React App.

Summary

Tweet Finder is a single page application (SPA) that allows the user to search Twitter for Tweets as well as be shown Tweets from preselected accounts. The primary purpose of this project is to serve as a learning tool to familiarize myself with APIs. The Twitter API offers several different tiers of service, this project utilizes the standard (free) API. In addition to utilizing APIs, building this project has helped me create foundational skills in React, Flask, and CSS. Caching was an afterthought and it was very interesting to integrate Redis into the project after the fact. The design was inspired by Twitter and utilizes the Twitter Brand Resources for content guidelines, fonts, and colors.

Features

  • Designed to be mobile-first, responsive
  • Search Twitter with various search parameters
  • Clicking the Tweet display name opens a profile card for that account
  • Clicking a hashtag or account name will run a new search for that hashtag or account
  • Verified accounts marked with a checkmark icon
  • Be shown a random Tweet from preselected accounts
  • Redis caching of the random Tweets, configurable cache duration - currently set to expire after 12 hours
  • All design and formatting created without templates or libraries

Technical

  • Front End (JavaScript)
    • React (main SPA)
    • Axios (HTTP requests)
  • Back End (Python)
    • Flask (Serving static site, internal API endpoints)
    • request (HTTP requests)
    • redis (redis communication)
    • gunicorn (HTTP production server)
  • Hosts
    • Main site on Heroku
    • Redis on RedisCloud (redislabs.com) add-on for Heroku

Deployment

Clone this repository.

Successful deployment will require adding three files to the project:

  • splash.jpeg, location: 'src/' (home page background image)
  • key.py, location: '/' (API authorization token for Twitter)
  • redis_password.py, location: '/' (Redis server hostname, port, and password)

splash.jpeg

This can be any jpeg image, it will show up with a 30% dark tint for better text readability. Name it splash.jpeg and place it in the project /src directory.

key.py

This file should contain a single line of code that looks like key = "bearer <alphanumeric_string>", replace <alphanumberic_string> with your unique authorization token. The basic process of generating an authorization token is as follows:

redis_password.py

All of the database specific variables are stored in this file, there should be three lines of code: redis_host = "https://<your_server_address>", redis_port = "<server_port_number>", and redis_password = "<your_database_password>". This project uses the Redis Cloud Heroku add-on with a free subscription.

Building the App

This project was started with create-react-app, navigate to the project root directory and with Node installed: npm run build

Deploy Locally

To serve the project locally, install the latest version of Python and create a new virtual environment. Activate the virtual environment, then navigate to the project root directory and pip install requirements.txt. Set the environment variable export FLASK_APP=server.py, and start the server with flask run. You can now open a browser and navigate to http://localhost:5000 to view the project.

Deploy on Heroku

After building the app, this project is ready to be deployed on Heroku. Select whichever deployment method suits you. Be sure to assign a dyno to the app: heroku ps:scale web=1, with the Heroku CLI installed.

Resources Used

Tags redis cache