Skip to content

Commit

Permalink
smart setter file
Browse files Browse the repository at this point in the history
  • Loading branch information
Ddhruv-IOT committed Sep 3, 2021
1 parent 7e29d1b commit 806d664
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions first_run_me.ipy
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
"""
Created on Fri Sep 3 00:04:15 2021

@author: ACER
"""

import os
import time

print("start")

time.sleep(2)

os.system("pip install nltk")
os.system("pip install streamlit")
os.system("pip install wordcloud")

time.sleep(10)

import nltk
nltk.download('vader_lexicon')
nltk.download('punkt')

time.sleep(20)
os.system("streamlit run text_analyzer.py")

0 comments on commit 806d664

Please sign in to comment.