We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add API to store scraped RasperryPiLogs following the model of #53 .
Useful comment: [WIP] Adds SQLAlchemy code for QuestionAnswerPairs #53 (comment)
also see Add endpoint to store scraped courses #47 which used @app.route to make an REST endpoint that the RaspberryPi can talk to via simply import requests
@app.route
import requests
Scraped RasperryPiLogs are saved in database.
save_rpi_logs()
database_wrapper
SQLAlchemy
RasperryPiLogs
The text was updated successfully, but these errors were encountered:
Current solution is a dictionary fed into Google Firebase. The dictionary is as follows:
log_dict = { "entity" : "[extracted entity]", "normalized question" : "[input question with the variable extracted and tag replaced]", "question" : "[user input question]", "answer" : "[the answer from the NLP function]" }
Sorry, something went wrong.
MaxMohammadi
Successfully merging a pull request may close this issue.
Objective
Add API to store scraped RasperryPiLogs following the model of #53 .
Useful comment: [WIP] Adds SQLAlchemy code for QuestionAnswerPairs #53 (comment)
also see Add endpoint to store scraped courses #47 which used
@app.route
to make an REST endpoint that the RaspberryPi can talk to via simplyimport requests
Key Result
Scraped RasperryPiLogs are saved in database.
Details
save_rpi_logs()
function indatabase_wrapper
to buildSQLAlchemy
RasperryPiLogs
object and save it to the database.@chidiewenike And Tyler Herzog are good points of contact
The text was updated successfully, but these errors were encountered: