Web-based custom word cloud builder created during the 2022 AT&T Labs Junior Hackathon (2nd Place Winner)
Two day event, with tours of AT&T labs covering 5G and data storage technology on the first day, programming challenge on the second day.
Given 4.5 hours with a random group of 3 people, create a word cloud generator using any language.
Created a word cloud generator with two options for users:
- Client-side generator using custom Javascript code
- Server-side generator using the wordcloud Python Package
Awarded 2nd Place for our unique customization settings for users
- Git Installed
- Pip Installed
- Open up terminal
- Go to the chosen directory where you want the project located
- Enter in terminal/code editor: git clone https://github.com/KOL305/word-cloud
- Open up your project in a code editor
- Enter in terminal: (Windows) python -m venv venv, (Mac) python3 -m venv venv
- Enter in terminal: (Windows) venv/Scripts/activate, (Mac) venv/bin/activate
- Make sure that your code editor has selected the venv python interpreter
- Enter in terminal: pip install -r requirements.txt
- Enter in terminal: (Windows) python app.py, (Mac) python3 app.py