Sen descrición

Mohidul Islam 8f0409d01a add fast-selenium api to reply facebook and scrape yelp reviews %!s(int64=4) %!d(string=hai) anos
analytics 645288b6f0 Added yelp send mail functionality whenever a negative review posted %!s(int64=4) %!d(string=hai) anos
dashboard efc606a1e9 Added facebook prediction and fixes all facebook-reply related bugs %!s(int64=4) %!d(string=hai) anos
facebook_app 8f0409d01a add fast-selenium api to reply facebook and scrape yelp reviews %!s(int64=4) %!d(string=hai) anos
gauth 6fac0ac94f Change location filed type and added registration mechanism %!s(int64=4) %!d(string=hai) anos
name_extractor 86fd6c77db Change ner model with a url of ner server %!s(int64=4) %!d(string=hai) anos
nlu_job 86fd6c77db Change ner model with a url of ner server %!s(int64=4) %!d(string=hai) anos
review 303304083e change on Model prediction report for new model %!s(int64=4) %!d(string=hai) anos
review_automation 8f0409d01a add fast-selenium api to reply facebook and scrape yelp reviews %!s(int64=4) %!d(string=hai) anos
static_root 9d90886dc5 shown all replies to the frontand %!s(int64=5) %!d(string=hai) anos
user d1ac2853f2 add url to navbar %!s(int64=4) %!d(string=hai) anos
yelp 8f0409d01a add fast-selenium api to reply facebook and scrape yelp reviews %!s(int64=4) %!d(string=hai) anos
.gitignore bdf2ea13b0 added a new app named analytics for analysis staff %!s(int64=5) %!d(string=hai) anos
README.md 8d6d46db79 Structure settings and wsgi for development and production environment %!s(int64=5) %!d(string=hai) anos
client_secrets.json 575b45840a Change the client_secret.json file with mybusiness secret info %!s(int64=5) %!d(string=hai) anos
manage.py c2f3d7d8c6 Fixes an existance issue %!s(int64=5) %!d(string=hai) anos
nohup.out db7ad16c10 Add a crontab to send mail in every sunday.. %!s(int64=4) %!d(string=hai) anos
requirements.txt 7485803a2b Added update staff list using datepicker field %!s(int64=4) %!d(string=hai) anos
review_automation.sql 77234acf26 Change some configuration for production server %!s(int64=4) %!d(string=hai) anos
review_data_set.csv af2df15a27 Update review dataset %!s(int64=5) %!d(string=hai) anos
signature_care_review_url.json 4893e1a464 Add an utility function that return all bad review %!s(int64=5) %!d(string=hai) anos

README.md

Byte Trek Reputation Management

Installation:

1. Clone The reporsitory

➜  git clone http://bytetrek.com:30000/ByteTrek-Projects/review-automation-backend.git

2. Create a virtual environment and active it.

➜  python3 -m venv env
➜  source env/bin/activate

3. Create a mysql database and import the .sql file

(env) ➜  mysql -u root -h localhost -p                 # mysql -u user -h host -p
mysql> CREATE DATABASE review_automation;
mysql> SHOW DATABASES;                                 # Make sure database is created or not.
exit                                                   # Exit out of the mysql prompt
(env) ➜  mysql -u root -p review_automation < review_automation.sql
# Make sure everything is just fine.
(env) ➜  mysql -u root -h localhost -p
mysql> USE review_automation;
mysql> SHOW TABLES;

4. Run the development server

(env) ➜ python manage.py runserver --settings=review_automation.settings.dev

5. Add all corn jobs

(env) ➜ python manage.py crontab add --settings=review_automation.settings.dev
# Make sure corn job has added successfully
(env) ➜ crontab -l                                     # Return list of cronjobs

6. Some usefull management command

  • Store all un-recorded reviews to the database.

    (env) ➜ python manage.py collect_reviews --settings=review_automation.settings.dev
    
    • Get model prediction report.

      (env) ➜ python manage.py model_report n_days
      # Example for last 30 days:
      (env) ➜ python manage.py model_report 30 --settings=review_automation.settings.dev