diff --git a/README.md b/README.md
index a7b40d2cc8d352f4d9b6dc56687e5e3ca9ed1a77..2dcc74cc4023737f98992308c1fd52d4a6a6b815 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,59 @@
 # CourseProject
 
-Please fork this repository and paste the github link of your fork on Microsoft CMT. Detailed instructions are on Coursera under Week 1: Course Project Overview/Week 9 Activities.
+**Group Presentation**
+https://mediaspace.illinois.edu/media/t/1_zbw469gj
+
+1. An overview of the function of the code (i.e., what it does and what it can be used for).
+
+Our application takes in a sentence and returns the overall sentiment of it along with its categories. The categories are broken into three sections: negative, neutral, and positive. To obtain real-life sentences, our application is connected with the Twitter API and extracts tweets for us to analyze. 
+
+2. Documentation of how the software is implemented with sufficient detail so that others can have a basic understanding of your code for future extension or any further improvement. 
+
+In order to implement our project, we utilized Twitter’s API in order to access tweets for any topic we wanted to analyze. Right now our implementation is not able to handle emojis, so we have a function that works on cleaning up the text, in particular getting rid of emojis. The rest of the implementation in terms of analyzing tweets, runs through the twitter api function, .search_tweets. With this you are able to modify a few parameters to fine tune what you want to search for. The key parameters are the search word you are using, this changes the topic that you will get tweets about. The final key parameter is the count, this will change the amount of tweets that you will receive about that topic. Then the function will gather an overall sentiment of the tweets for that topic.
+
+3. Detailed instructions on how to install and run a software, whichever is applicable.
+
+Instructions:
+
+* Download or clone repository and navigate to the folder
+* Install the required imports through requirements.txt:
+>pip install -r requirements.txt
+* To run the tests, uncomment the bottom part of analysis.py and run:
+>python analysis.py
+* To run the twitter sentiment analysis, comment the bottom part of analysis.py if it was uncommented and run:
+>python twitter.py
+* (Optional) In twitter.py, you can edit the search_words variable in order to query results on different topics as well as change the count variable to output a different number of tweets
+
+
+4. Brief description of contribution of each team member in case of a multi-person team. 
+
+
+In terms of contributions, all team members conducted research into the different tools to utilize for our project. This process was lengthy and the quality of knowledge gained was valuable. Ron and Davy researched which libraries to use for sentiment analysis and the ideal thresholds and parameters for analysis. Tony and Pranith researched connecting to the Twitter API and resolving any dependency and Twitter version issues with our current application. 
+
+Aside from research, the more individual work on the actual project was broken down as follows:
+
+Everyone:
+Explored and agreed on an overall algorithm for the project
+Determined how to split up the different functionalities in code
+
+Pranith: 
+Worked w/ Tony on writing Twitter API calls
+Fixed old library dependency issues
+Tested sentiment analysis code
+Planned the presentation
+
+Tony: 
+Worked w/ Pranith on writing Twitter API calls
+Explored other routes for retrieving text data from Twitter to determine the most efficient
+Tested different data structures to determine the most useful format
+
+Davy: 
+Worked w/ Ron on writing Sentiment Analysis code and testing
+Determined thresholds
+Managed video-editing and submissions
+
+Ron: 
+Worked w/ Davy on writing Sentiment Analysis code and testing
+Determined best sentiment library
+Created test datasets to compare quality of results
+
diff --git a/__pycache__/analysis.cpython-38.pyc b/__pycache__/analysis.cpython-38.pyc
index 1c2e0b64262124b7387d2d17b13114edc3eb32cd..a7cc930cadeb6ef7d0ab4f1caa1485cb476adc0d 100644
Binary files a/__pycache__/analysis.cpython-38.pyc and b/__pycache__/analysis.cpython-38.pyc differ
diff --git a/analysis.py b/analysis.py
index 057494e2c32beef4da6d5d198ff221abeb9d5e5a..559ec4e5d87b1a89e9598d3541d06bf8470e7b24 100644
--- a/analysis.py
+++ b/analysis.py
@@ -35,7 +35,7 @@ def overall_sentiment(text):
         return "Neutral"
     
 
-
+# UNCOMMENT BELOW TO RUN TESTS
 # pos_count = 0
 # pos_correct = 0
 
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..732a756b337e9238cb7b39e7c702661241a84ba5
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,2 @@
+tweepy
+vaderSentiment
\ No newline at end of file
diff --git a/twitter.py b/twitter.py
index 10f67851f8584602a789b4c754f2639d43d5bdf7..4752da16f895bd6694bc2e7132278b08e9eb2add 100644
--- a/twitter.py
+++ b/twitter.py
@@ -10,6 +10,11 @@ import preprocessor as p
 import analysis
 import emoji
 
+consumer_key = "eWDIfDxXrYCfIcZmrnyqDa8MF"
+consumer_secret =  "rK86MTAtzC8mVcZfs4ximI2TXcZGCQub7q3GnlGQtgIvJiXdn7"
+access_key= "1465826212861943809-JKsYmTnPRKN2UEuzO1gZhLph0mmdqA"
+access_secret = "Jhl8q3suY45Avrm2SgchC8BsqNzoVvkB8enAukuXFTRu9"
+ 
 # Remove Emojis
 def give_emoji_free_text(text):
     allchars = [str for str in text]
@@ -30,8 +35,4 @@ new_search = search_words + " -filter:retweets"
 for tweets in api.search_tweets(q=new_search, lang="en", count=100, since_id=0):
     print(tweets.text)
     text = give_emoji_free_text(text=tweets.text)
-    analysis.overall_sentiment(text)
-# #for tweet in tweepy.Cursor(api.search_tweets,q=new_search,count=100,
-#                            lang="en",
-#                            since_id=0).items():
-#                            print(tweet.text.encode('utf-8'))
\ No newline at end of file
+    analysis.overall_sentiment(text)
\ No newline at end of file