Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 975 Bytes

README.md

File metadata and controls

46 lines (32 loc) · 975 Bytes

twitter-feed

This is a program to simulate a twitter-like feed.

Showcase
- Given two seven-bit ASCII files, user.txt and tweet.txt write a program that will simulate a twitter like feed as a cli application.
- The first file contains a list of users and their followers. The second file should contain a list of tweets.
- The objective is to simulate a twitter like feed.

Install

# Install locally
make install
make build

Usage

Given two seven-bit ASCII files, user.txt and tweet.txt as in sample/sample.py the program will give an output with representing a twitter feed. to run the program with sample data run:

make run-sapmle

or /

venv/bin/python ./sample/sample.py

Development

# Get a comprehensive list of development tools including tests
make help