BCIT-Hackathon
About
This program allows users to input non-built-in Python functions and receive a plain-English explanation of what the function does. The system analyzes the structure and logic of the code, then translates it into a concise summary that is easy for beginner developers to understand. The goal is to make learning programming easier by helping users quickly grasp how code works without needing more advanced knowledge.
Instructions
- Open terminal
- type in "pip install parse4u"
python pip install parse4u
- open python file
- import parse4u
- type in "generate()"
from parse4u import *
generate()
- Enter (or copy and paste) your code for your Python function
- Press Ctrl + D or type "END" to start parsing your code
Enter/Paste your content. Type " END " or press Ctrl-D or Ctrl-Z on windows to save it.
def something():
return nothing
END
OUTPUT:
something is declared as a function. It takes no parameters.
return nothing
Authors
James Flora Saba Ollie Fawaz
All of us are in our first term.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Log in or sign up for Devpost to join the conversation.