diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a08054a --- /dev/null +++ b/requirements.txt @@ -0,0 +1,12 @@ +Flask~=1.1.2 +python-dotenv~=0.14.0 +libsass~=0.20.0 +gunicorn~=20.0.4 +Flask-WTF~=0.14.3 +# flask-sqlalchemy~=2.4.4 +# psycopg2~=2.8.5 +# Flask-Migrate~=2.5.3 +# SQLAlchemy~=1.3.18 +# alembic~=1.4.2 +click~=7.1.2 +Werkzeug~=1.0.1 \ No newline at end of file diff --git a/the-office/__init__.py b/the_office/__init__.py similarity index 100% rename from the-office/__init__.py rename to the_office/__init__.py diff --git a/the_office/create_app.py b/the_office/create_app.py new file mode 100644 index 0000000..94f4003 --- /dev/null +++ b/the_office/create_app.py @@ -0,0 +1,79 @@ +""" +create_app.py + +The create_app function used to create and initialize the app with all of it's extensions and settings. +""" + +from flask import Flask, render_template +from flask_migrate import Migrate +from flask_sqlalchemy import SQLAlchemy +from flask_wtf.csrf import CSRFProtect +from sassutils.wsgi import SassMiddleware +from werkzeug.exceptions import HTTPException +from flask_static_digest import FlaskStaticDigest + +from the_office.config import configs + +# flask_static_digest = FlaskStaticDigest() +db = SQLAlchemy() +csrf = CSRFProtect() +migrate = Migrate() + + +def create_app(env=None): + """ + The create_app function used to create and initialize the app with all of it's extensions and settings. + """ + app = Flask(__name__) + + # Add Sass middleware (black magic) + app.wsgi_app = SassMiddleware(app.wsgi_app, { + 'unimatch': ('static/sass', 'static/css', '/static/css', False) + }) + + # Load configuration values + if not env: + env = app.config['ENV'] + app.config.from_object(configs[env]) + + # Fixes poor whitespace rendering in templates + app.jinja_env.trim_blocks = True + app.jinja_env.lstrip_blocks = True + + # Initialize Flask extensions + db.init_app(app) + csrf.init_app(app) + migrate.init_app(app, db) + + # flask_static_digest.init_app(app) + # CLI commands setup + @app.shell_context_processor + def shell_context(): + """Provides specific Flask components to the shell.""" + return {'app': app, 'db': db} + + # Custom error handler page (all errors) + @app.errorhandler(HTTPException) + def handle_exception(e): + """Error handler, sends users to a custom error page template.""" + return render_template('error.html', exception=e), e.code + + @app.context_processor + def inject_debug(): + """ + Allows for testing for debug mode in jinja2 templates. + """ + return dict(debug=app.debug) + + # noinspection PyUnresolvedReferences + from unimatch import models + with app.app_context(): + db.create_all() + # noinspection PyUnresolvedReferences + from unimatch import routes + + # Register custom commands + from unimatch import commands + app.cli.add_command(commands.load_colleges) + + return app diff --git a/the-office/data/html/1-01.html b/the_office/data/html/1-01.html similarity index 100% rename from the-office/data/html/1-01.html rename to the_office/data/html/1-01.html diff --git a/the-office/data/html/1-02.html b/the_office/data/html/1-02.html similarity index 100% rename from the-office/data/html/1-02.html rename to the_office/data/html/1-02.html diff --git a/the-office/data/html/1-03.html b/the_office/data/html/1-03.html similarity index 100% rename from the-office/data/html/1-03.html rename to the_office/data/html/1-03.html diff --git a/the-office/data/html/1-04.html b/the_office/data/html/1-04.html similarity index 100% rename from the-office/data/html/1-04.html rename to the_office/data/html/1-04.html diff --git a/the-office/data/html/1-05.html b/the_office/data/html/1-05.html similarity index 100% rename from the-office/data/html/1-05.html rename to the_office/data/html/1-05.html diff --git a/the-office/data/html/1-06.html b/the_office/data/html/1-06.html similarity index 100% rename from the-office/data/html/1-06.html rename to the_office/data/html/1-06.html diff --git a/the-office/data/html/2-01.html b/the_office/data/html/2-01.html similarity index 100% rename from the-office/data/html/2-01.html rename to the_office/data/html/2-01.html diff --git a/the-office/data/html/2-02.html b/the_office/data/html/2-02.html similarity index 100% rename from the-office/data/html/2-02.html rename to the_office/data/html/2-02.html diff --git a/the-office/data/html/2-03.html b/the_office/data/html/2-03.html similarity index 100% rename from the-office/data/html/2-03.html rename to the_office/data/html/2-03.html diff --git a/the-office/data/html/2-04.html b/the_office/data/html/2-04.html similarity index 100% rename from the-office/data/html/2-04.html rename to the_office/data/html/2-04.html diff --git a/the-office/data/html/2-05.html b/the_office/data/html/2-05.html similarity index 100% rename from the-office/data/html/2-05.html rename to the_office/data/html/2-05.html diff --git a/the-office/data/html/2-06.html b/the_office/data/html/2-06.html similarity index 100% rename from the-office/data/html/2-06.html rename to the_office/data/html/2-06.html diff --git a/the-office/data/html/2-07.html b/the_office/data/html/2-07.html similarity index 100% rename from the-office/data/html/2-07.html rename to the_office/data/html/2-07.html diff --git a/the-office/data/html/2-08.html b/the_office/data/html/2-08.html similarity index 100% rename from the-office/data/html/2-08.html rename to the_office/data/html/2-08.html diff --git a/the-office/data/html/2-09.html b/the_office/data/html/2-09.html similarity index 100% rename from the-office/data/html/2-09.html rename to the_office/data/html/2-09.html diff --git a/the-office/data/html/2-10.html b/the_office/data/html/2-10.html similarity index 100% rename from the-office/data/html/2-10.html rename to the_office/data/html/2-10.html diff --git a/the-office/data/html/2-11.html b/the_office/data/html/2-11.html similarity index 100% rename from the-office/data/html/2-11.html rename to the_office/data/html/2-11.html diff --git a/the-office/data/html/2-12.html b/the_office/data/html/2-12.html similarity index 100% rename from the-office/data/html/2-12.html rename to the_office/data/html/2-12.html diff --git a/the-office/data/html/2-13.html b/the_office/data/html/2-13.html similarity index 100% rename from the-office/data/html/2-13.html rename to the_office/data/html/2-13.html diff --git a/the-office/data/html/2-14.html b/the_office/data/html/2-14.html similarity index 100% rename from the-office/data/html/2-14.html rename to the_office/data/html/2-14.html diff --git a/the-office/data/html/2-15.html b/the_office/data/html/2-15.html similarity index 100% rename from the-office/data/html/2-15.html rename to the_office/data/html/2-15.html diff --git a/the-office/data/html/2-16.html b/the_office/data/html/2-16.html similarity index 100% rename from the-office/data/html/2-16.html rename to the_office/data/html/2-16.html diff --git a/the-office/data/html/2-17.html b/the_office/data/html/2-17.html similarity index 100% rename from the-office/data/html/2-17.html rename to the_office/data/html/2-17.html diff --git a/the-office/data/html/2-18.html b/the_office/data/html/2-18.html similarity index 100% rename from the-office/data/html/2-18.html rename to the_office/data/html/2-18.html diff --git a/the-office/data/html/2-19.html b/the_office/data/html/2-19.html similarity index 100% rename from the-office/data/html/2-19.html rename to the_office/data/html/2-19.html diff --git a/the-office/data/html/2-20.html b/the_office/data/html/2-20.html similarity index 100% rename from the-office/data/html/2-20.html rename to the_office/data/html/2-20.html diff --git a/the-office/data/html/2-21.html b/the_office/data/html/2-21.html similarity index 100% rename from the-office/data/html/2-21.html rename to the_office/data/html/2-21.html diff --git a/the-office/data/html/2-22.html b/the_office/data/html/2-22.html similarity index 100% rename from the-office/data/html/2-22.html rename to the_office/data/html/2-22.html diff --git a/the-office/data/html/3-01.html b/the_office/data/html/3-01.html similarity index 100% rename from the-office/data/html/3-01.html rename to the_office/data/html/3-01.html diff --git a/the-office/data/html/3-02.html b/the_office/data/html/3-02.html similarity index 100% rename from the-office/data/html/3-02.html rename to the_office/data/html/3-02.html diff --git a/the-office/data/html/3-03.html b/the_office/data/html/3-03.html similarity index 100% rename from the-office/data/html/3-03.html rename to the_office/data/html/3-03.html diff --git a/the-office/data/html/3-04.html b/the_office/data/html/3-04.html similarity index 100% rename from the-office/data/html/3-04.html rename to the_office/data/html/3-04.html diff --git a/the-office/data/html/3-05.html b/the_office/data/html/3-05.html similarity index 100% rename from the-office/data/html/3-05.html rename to the_office/data/html/3-05.html diff --git a/the-office/data/html/3-06.html b/the_office/data/html/3-06.html similarity index 100% rename from the-office/data/html/3-06.html rename to the_office/data/html/3-06.html diff --git a/the-office/data/html/3-07.html b/the_office/data/html/3-07.html similarity index 100% rename from the-office/data/html/3-07.html rename to the_office/data/html/3-07.html diff --git a/the-office/data/html/3-08.html b/the_office/data/html/3-08.html similarity index 100% rename from the-office/data/html/3-08.html rename to the_office/data/html/3-08.html diff --git a/the-office/data/html/3-09.html b/the_office/data/html/3-09.html similarity index 100% rename from the-office/data/html/3-09.html rename to the_office/data/html/3-09.html diff --git a/the-office/data/html/3-10.html b/the_office/data/html/3-10.html similarity index 100% rename from the-office/data/html/3-10.html rename to the_office/data/html/3-10.html diff --git a/the-office/data/html/3-11.html b/the_office/data/html/3-11.html similarity index 100% rename from the-office/data/html/3-11.html rename to the_office/data/html/3-11.html diff --git a/the-office/data/html/3-12.html b/the_office/data/html/3-12.html similarity index 100% rename from the-office/data/html/3-12.html rename to the_office/data/html/3-12.html diff --git a/the-office/data/html/3-13.html b/the_office/data/html/3-13.html similarity index 100% rename from the-office/data/html/3-13.html rename to the_office/data/html/3-13.html diff --git a/the-office/data/html/3-14.html b/the_office/data/html/3-14.html similarity index 100% rename from the-office/data/html/3-14.html rename to the_office/data/html/3-14.html diff --git a/the-office/data/html/3-15.html b/the_office/data/html/3-15.html similarity index 100% rename from the-office/data/html/3-15.html rename to the_office/data/html/3-15.html diff --git a/the-office/data/html/3-16.html b/the_office/data/html/3-16.html similarity index 100% rename from the-office/data/html/3-16.html rename to the_office/data/html/3-16.html diff --git a/the-office/data/html/3-17.html b/the_office/data/html/3-17.html similarity index 100% rename from the-office/data/html/3-17.html rename to the_office/data/html/3-17.html diff --git a/the-office/data/html/3-18.html b/the_office/data/html/3-18.html similarity index 100% rename from the-office/data/html/3-18.html rename to the_office/data/html/3-18.html diff --git a/the-office/data/html/3-19.html b/the_office/data/html/3-19.html similarity index 100% rename from the-office/data/html/3-19.html rename to the_office/data/html/3-19.html diff --git a/the-office/data/html/3-20.html b/the_office/data/html/3-20.html similarity index 100% rename from the-office/data/html/3-20.html rename to the_office/data/html/3-20.html diff --git a/the-office/data/html/3-21.html b/the_office/data/html/3-21.html similarity index 100% rename from the-office/data/html/3-21.html rename to the_office/data/html/3-21.html diff --git a/the-office/data/html/3-22.html b/the_office/data/html/3-22.html similarity index 100% rename from the-office/data/html/3-22.html rename to the_office/data/html/3-22.html diff --git a/the-office/data/html/3-23.html b/the_office/data/html/3-23.html similarity index 100% rename from the-office/data/html/3-23.html rename to the_office/data/html/3-23.html diff --git a/the-office/data/html/4-01.html b/the_office/data/html/4-01.html similarity index 100% rename from the-office/data/html/4-01.html rename to the_office/data/html/4-01.html diff --git a/the-office/data/html/4-02.html b/the_office/data/html/4-02.html similarity index 100% rename from the-office/data/html/4-02.html rename to the_office/data/html/4-02.html diff --git a/the-office/data/html/4-03.html b/the_office/data/html/4-03.html similarity index 100% rename from the-office/data/html/4-03.html rename to the_office/data/html/4-03.html diff --git a/the-office/data/html/4-04.html b/the_office/data/html/4-04.html similarity index 100% rename from the-office/data/html/4-04.html rename to the_office/data/html/4-04.html diff --git a/the-office/data/html/4-05.html b/the_office/data/html/4-05.html similarity index 100% rename from the-office/data/html/4-05.html rename to the_office/data/html/4-05.html diff --git a/the-office/data/html/4-06.html b/the_office/data/html/4-06.html similarity index 100% rename from the-office/data/html/4-06.html rename to the_office/data/html/4-06.html diff --git a/the-office/data/html/4-07.html b/the_office/data/html/4-07.html similarity index 100% rename from the-office/data/html/4-07.html rename to the_office/data/html/4-07.html diff --git a/the-office/data/html/4-09.html b/the_office/data/html/4-09.html similarity index 100% rename from the-office/data/html/4-09.html rename to the_office/data/html/4-09.html diff --git a/the-office/data/html/4-10.html b/the_office/data/html/4-10.html similarity index 100% rename from the-office/data/html/4-10.html rename to the_office/data/html/4-10.html diff --git a/the-office/data/html/4-11.html b/the_office/data/html/4-11.html similarity index 100% rename from the-office/data/html/4-11.html rename to the_office/data/html/4-11.html diff --git a/the-office/data/html/4-12.html b/the_office/data/html/4-12.html similarity index 100% rename from the-office/data/html/4-12.html rename to the_office/data/html/4-12.html diff --git a/the-office/data/html/4-13.html b/the_office/data/html/4-13.html similarity index 100% rename from the-office/data/html/4-13.html rename to the_office/data/html/4-13.html diff --git a/the-office/data/html/4-14.html b/the_office/data/html/4-14.html similarity index 100% rename from the-office/data/html/4-14.html rename to the_office/data/html/4-14.html diff --git a/the-office/data/html/5-01.html b/the_office/data/html/5-01.html similarity index 100% rename from the-office/data/html/5-01.html rename to the_office/data/html/5-01.html diff --git a/the-office/data/html/5-02.html b/the_office/data/html/5-02.html similarity index 100% rename from the-office/data/html/5-02.html rename to the_office/data/html/5-02.html diff --git a/the-office/data/html/5-03.html b/the_office/data/html/5-03.html similarity index 100% rename from the-office/data/html/5-03.html rename to the_office/data/html/5-03.html diff --git a/the-office/data/html/5-04.html b/the_office/data/html/5-04.html similarity index 100% rename from the-office/data/html/5-04.html rename to the_office/data/html/5-04.html diff --git a/the-office/data/html/5-05.html b/the_office/data/html/5-05.html similarity index 100% rename from the-office/data/html/5-05.html rename to the_office/data/html/5-05.html diff --git a/the-office/data/html/5-06.html b/the_office/data/html/5-06.html similarity index 100% rename from the-office/data/html/5-06.html rename to the_office/data/html/5-06.html diff --git a/the-office/data/html/5-07.html b/the_office/data/html/5-07.html similarity index 100% rename from the-office/data/html/5-07.html rename to the_office/data/html/5-07.html diff --git a/the-office/data/html/5-08.html b/the_office/data/html/5-08.html similarity index 100% rename from the-office/data/html/5-08.html rename to the_office/data/html/5-08.html diff --git a/the-office/data/html/5-09.html b/the_office/data/html/5-09.html similarity index 100% rename from the-office/data/html/5-09.html rename to the_office/data/html/5-09.html diff --git a/the-office/data/html/5-10.html b/the_office/data/html/5-10.html similarity index 100% rename from the-office/data/html/5-10.html rename to the_office/data/html/5-10.html diff --git a/the-office/data/html/5-11.html b/the_office/data/html/5-11.html similarity index 100% rename from the-office/data/html/5-11.html rename to the_office/data/html/5-11.html diff --git a/the-office/data/html/5-12.html b/the_office/data/html/5-12.html similarity index 100% rename from the-office/data/html/5-12.html rename to the_office/data/html/5-12.html diff --git a/the-office/data/html/5-13.html b/the_office/data/html/5-13.html similarity index 100% rename from the-office/data/html/5-13.html rename to the_office/data/html/5-13.html diff --git a/the-office/data/html/5-14.html b/the_office/data/html/5-14.html similarity index 100% rename from the-office/data/html/5-14.html rename to the_office/data/html/5-14.html diff --git a/the-office/data/html/5-15.html b/the_office/data/html/5-15.html similarity index 100% rename from the-office/data/html/5-15.html rename to the_office/data/html/5-15.html diff --git a/the-office/data/html/5-16.html b/the_office/data/html/5-16.html similarity index 100% rename from the-office/data/html/5-16.html rename to the_office/data/html/5-16.html diff --git a/the-office/data/html/5-17.html b/the_office/data/html/5-17.html similarity index 100% rename from the-office/data/html/5-17.html rename to the_office/data/html/5-17.html diff --git a/the-office/data/html/5-19.html b/the_office/data/html/5-19.html similarity index 100% rename from the-office/data/html/5-19.html rename to the_office/data/html/5-19.html diff --git a/the-office/data/html/5-20.html b/the_office/data/html/5-20.html similarity index 100% rename from the-office/data/html/5-20.html rename to the_office/data/html/5-20.html diff --git a/the-office/data/html/5-21.html b/the_office/data/html/5-21.html similarity index 100% rename from the-office/data/html/5-21.html rename to the_office/data/html/5-21.html diff --git a/the-office/data/html/5-22.html b/the_office/data/html/5-22.html similarity index 100% rename from the-office/data/html/5-22.html rename to the_office/data/html/5-22.html diff --git a/the-office/data/html/5-23.html b/the_office/data/html/5-23.html similarity index 100% rename from the-office/data/html/5-23.html rename to the_office/data/html/5-23.html diff --git a/the-office/data/html/5-24.html b/the_office/data/html/5-24.html similarity index 100% rename from the-office/data/html/5-24.html rename to the_office/data/html/5-24.html diff --git a/the-office/data/html/5-25.html b/the_office/data/html/5-25.html similarity index 100% rename from the-office/data/html/5-25.html rename to the_office/data/html/5-25.html diff --git a/the-office/data/html/5-26.html b/the_office/data/html/5-26.html similarity index 100% rename from the-office/data/html/5-26.html rename to the_office/data/html/5-26.html diff --git a/the-office/data/html/6-01.html b/the_office/data/html/6-01.html similarity index 100% rename from the-office/data/html/6-01.html rename to the_office/data/html/6-01.html diff --git a/the-office/data/html/6-02.html b/the_office/data/html/6-02.html similarity index 100% rename from the-office/data/html/6-02.html rename to the_office/data/html/6-02.html diff --git a/the-office/data/html/6-03.html b/the_office/data/html/6-03.html similarity index 100% rename from the-office/data/html/6-03.html rename to the_office/data/html/6-03.html diff --git a/the-office/data/html/6-04.html b/the_office/data/html/6-04.html similarity index 100% rename from the-office/data/html/6-04.html rename to the_office/data/html/6-04.html diff --git a/the-office/data/html/6-05.html b/the_office/data/html/6-05.html similarity index 100% rename from the-office/data/html/6-05.html rename to the_office/data/html/6-05.html diff --git a/the-office/data/html/6-06.html b/the_office/data/html/6-06.html similarity index 100% rename from the-office/data/html/6-06.html rename to the_office/data/html/6-06.html diff --git a/the-office/data/html/6-07.html b/the_office/data/html/6-07.html similarity index 100% rename from the-office/data/html/6-07.html rename to the_office/data/html/6-07.html diff --git a/the-office/data/html/6-08.html b/the_office/data/html/6-08.html similarity index 100% rename from the-office/data/html/6-08.html rename to the_office/data/html/6-08.html diff --git a/the-office/data/html/6-09.html b/the_office/data/html/6-09.html similarity index 100% rename from the-office/data/html/6-09.html rename to the_office/data/html/6-09.html diff --git a/the-office/data/html/6-10.html b/the_office/data/html/6-10.html similarity index 100% rename from the-office/data/html/6-10.html rename to the_office/data/html/6-10.html diff --git a/the-office/data/html/6-11.html b/the_office/data/html/6-11.html similarity index 100% rename from the-office/data/html/6-11.html rename to the_office/data/html/6-11.html diff --git a/the-office/data/html/6-12.html b/the_office/data/html/6-12.html similarity index 100% rename from the-office/data/html/6-12.html rename to the_office/data/html/6-12.html diff --git a/the-office/data/html/6-13.html b/the_office/data/html/6-13.html similarity index 100% rename from the-office/data/html/6-13.html rename to the_office/data/html/6-13.html diff --git a/the-office/data/html/6-14.html b/the_office/data/html/6-14.html similarity index 100% rename from the-office/data/html/6-14.html rename to the_office/data/html/6-14.html diff --git a/the-office/data/html/6-15.html b/the_office/data/html/6-15.html similarity index 100% rename from the-office/data/html/6-15.html rename to the_office/data/html/6-15.html diff --git a/the-office/data/html/6-16.html b/the_office/data/html/6-16.html similarity index 100% rename from the-office/data/html/6-16.html rename to the_office/data/html/6-16.html diff --git a/the-office/data/html/6-17.html b/the_office/data/html/6-17.html similarity index 100% rename from the-office/data/html/6-17.html rename to the_office/data/html/6-17.html diff --git a/the-office/data/html/6-18.html b/the_office/data/html/6-18.html similarity index 100% rename from the-office/data/html/6-18.html rename to the_office/data/html/6-18.html diff --git a/the-office/data/html/6-19.html b/the_office/data/html/6-19.html similarity index 100% rename from the-office/data/html/6-19.html rename to the_office/data/html/6-19.html diff --git a/the-office/data/html/6-20.html b/the_office/data/html/6-20.html similarity index 100% rename from the-office/data/html/6-20.html rename to the_office/data/html/6-20.html diff --git a/the-office/data/html/6-21.html b/the_office/data/html/6-21.html similarity index 100% rename from the-office/data/html/6-21.html rename to the_office/data/html/6-21.html diff --git a/the-office/data/html/6-22.html b/the_office/data/html/6-22.html similarity index 100% rename from the-office/data/html/6-22.html rename to the_office/data/html/6-22.html diff --git a/the-office/data/html/6-23.html b/the_office/data/html/6-23.html similarity index 100% rename from the-office/data/html/6-23.html rename to the_office/data/html/6-23.html diff --git a/the-office/data/html/6-24.html b/the_office/data/html/6-24.html similarity index 100% rename from the-office/data/html/6-24.html rename to the_office/data/html/6-24.html diff --git a/the-office/data/html/7-01.html b/the_office/data/html/7-01.html similarity index 100% rename from the-office/data/html/7-01.html rename to the_office/data/html/7-01.html diff --git a/the-office/data/html/7-02.html b/the_office/data/html/7-02.html similarity index 100% rename from the-office/data/html/7-02.html rename to the_office/data/html/7-02.html diff --git a/the-office/data/html/7-03.html b/the_office/data/html/7-03.html similarity index 100% rename from the-office/data/html/7-03.html rename to the_office/data/html/7-03.html diff --git a/the-office/data/html/7-04.html b/the_office/data/html/7-04.html similarity index 100% rename from the-office/data/html/7-04.html rename to the_office/data/html/7-04.html diff --git a/the-office/data/html/7-05.html b/the_office/data/html/7-05.html similarity index 100% rename from the-office/data/html/7-05.html rename to the_office/data/html/7-05.html diff --git a/the-office/data/html/7-06.html b/the_office/data/html/7-06.html similarity index 100% rename from the-office/data/html/7-06.html rename to the_office/data/html/7-06.html diff --git a/the-office/data/html/7-07.html b/the_office/data/html/7-07.html similarity index 100% rename from the-office/data/html/7-07.html rename to the_office/data/html/7-07.html diff --git a/the-office/data/html/7-08.html b/the_office/data/html/7-08.html similarity index 100% rename from the-office/data/html/7-08.html rename to the_office/data/html/7-08.html diff --git a/the-office/data/html/7-09.html b/the_office/data/html/7-09.html similarity index 100% rename from the-office/data/html/7-09.html rename to the_office/data/html/7-09.html diff --git a/the-office/data/html/7-10.html b/the_office/data/html/7-10.html similarity index 100% rename from the-office/data/html/7-10.html rename to the_office/data/html/7-10.html diff --git a/the-office/data/html/7-11.html b/the_office/data/html/7-11.html similarity index 100% rename from the-office/data/html/7-11.html rename to the_office/data/html/7-11.html diff --git a/the-office/data/html/7-12.html b/the_office/data/html/7-12.html similarity index 100% rename from the-office/data/html/7-12.html rename to the_office/data/html/7-12.html diff --git a/the-office/data/html/7-13.html b/the_office/data/html/7-13.html similarity index 100% rename from the-office/data/html/7-13.html rename to the_office/data/html/7-13.html diff --git a/the-office/data/html/7-14.html b/the_office/data/html/7-14.html similarity index 100% rename from the-office/data/html/7-14.html rename to the_office/data/html/7-14.html diff --git a/the-office/data/html/7-15.html b/the_office/data/html/7-15.html similarity index 100% rename from the-office/data/html/7-15.html rename to the_office/data/html/7-15.html diff --git a/the-office/data/html/7-16.html b/the_office/data/html/7-16.html similarity index 100% rename from the-office/data/html/7-16.html rename to the_office/data/html/7-16.html diff --git a/the-office/data/html/7-17.html b/the_office/data/html/7-17.html similarity index 100% rename from the-office/data/html/7-17.html rename to the_office/data/html/7-17.html diff --git a/the-office/data/html/7-18.html b/the_office/data/html/7-18.html similarity index 100% rename from the-office/data/html/7-18.html rename to the_office/data/html/7-18.html diff --git a/the-office/data/html/7-19.html b/the_office/data/html/7-19.html similarity index 100% rename from the-office/data/html/7-19.html rename to the_office/data/html/7-19.html diff --git a/the-office/data/html/7-20.html b/the_office/data/html/7-20.html similarity index 100% rename from the-office/data/html/7-20.html rename to the_office/data/html/7-20.html diff --git a/the-office/data/html/7-21.html b/the_office/data/html/7-21.html similarity index 100% rename from the-office/data/html/7-21.html rename to the_office/data/html/7-21.html diff --git a/the-office/data/html/7-22.html b/the_office/data/html/7-22.html similarity index 100% rename from the-office/data/html/7-22.html rename to the_office/data/html/7-22.html diff --git a/the-office/data/html/7-23.html b/the_office/data/html/7-23.html similarity index 100% rename from the-office/data/html/7-23.html rename to the_office/data/html/7-23.html diff --git a/the-office/data/html/7-24.html b/the_office/data/html/7-24.html similarity index 100% rename from the-office/data/html/7-24.html rename to the_office/data/html/7-24.html diff --git a/the-office/data/html/8-01.html b/the_office/data/html/8-01.html similarity index 100% rename from the-office/data/html/8-01.html rename to the_office/data/html/8-01.html diff --git a/the-office/data/html/8-02.html b/the_office/data/html/8-02.html similarity index 100% rename from the-office/data/html/8-02.html rename to the_office/data/html/8-02.html diff --git a/the-office/data/html/8-03.html b/the_office/data/html/8-03.html similarity index 100% rename from the-office/data/html/8-03.html rename to the_office/data/html/8-03.html diff --git a/the-office/data/html/8-04.html b/the_office/data/html/8-04.html similarity index 100% rename from the-office/data/html/8-04.html rename to the_office/data/html/8-04.html diff --git a/the-office/data/html/8-05.html b/the_office/data/html/8-05.html similarity index 100% rename from the-office/data/html/8-05.html rename to the_office/data/html/8-05.html diff --git a/the-office/data/html/8-06.html b/the_office/data/html/8-06.html similarity index 100% rename from the-office/data/html/8-06.html rename to the_office/data/html/8-06.html diff --git a/the-office/data/html/8-07.html b/the_office/data/html/8-07.html similarity index 100% rename from the-office/data/html/8-07.html rename to the_office/data/html/8-07.html diff --git a/the-office/data/html/8-08.html b/the_office/data/html/8-08.html similarity index 100% rename from the-office/data/html/8-08.html rename to the_office/data/html/8-08.html diff --git a/the-office/data/html/8-09.html b/the_office/data/html/8-09.html similarity index 100% rename from the-office/data/html/8-09.html rename to the_office/data/html/8-09.html diff --git a/the-office/data/html/8-10.html b/the_office/data/html/8-10.html similarity index 100% rename from the-office/data/html/8-10.html rename to the_office/data/html/8-10.html diff --git a/the-office/data/html/8-11.html b/the_office/data/html/8-11.html similarity index 100% rename from the-office/data/html/8-11.html rename to the_office/data/html/8-11.html diff --git a/the-office/data/html/8-12.html b/the_office/data/html/8-12.html similarity index 100% rename from the-office/data/html/8-12.html rename to the_office/data/html/8-12.html diff --git a/the-office/data/html/8-13.html b/the_office/data/html/8-13.html similarity index 100% rename from the-office/data/html/8-13.html rename to the_office/data/html/8-13.html diff --git a/the-office/data/html/8-14.html b/the_office/data/html/8-14.html similarity index 100% rename from the-office/data/html/8-14.html rename to the_office/data/html/8-14.html diff --git a/the-office/data/html/8-15.html b/the_office/data/html/8-15.html similarity index 100% rename from the-office/data/html/8-15.html rename to the_office/data/html/8-15.html diff --git a/the-office/data/html/8-16.html b/the_office/data/html/8-16.html similarity index 100% rename from the-office/data/html/8-16.html rename to the_office/data/html/8-16.html diff --git a/the-office/data/html/8-17.html b/the_office/data/html/8-17.html similarity index 100% rename from the-office/data/html/8-17.html rename to the_office/data/html/8-17.html diff --git a/the-office/data/html/8-18.html b/the_office/data/html/8-18.html similarity index 100% rename from the-office/data/html/8-18.html rename to the_office/data/html/8-18.html diff --git a/the-office/data/html/8-19.html b/the_office/data/html/8-19.html similarity index 100% rename from the-office/data/html/8-19.html rename to the_office/data/html/8-19.html diff --git a/the-office/data/html/8-20.html b/the_office/data/html/8-20.html similarity index 100% rename from the-office/data/html/8-20.html rename to the_office/data/html/8-20.html diff --git a/the-office/data/html/8-21.html b/the_office/data/html/8-21.html similarity index 100% rename from the-office/data/html/8-21.html rename to the_office/data/html/8-21.html diff --git a/the-office/data/html/8-22.html b/the_office/data/html/8-22.html similarity index 100% rename from the-office/data/html/8-22.html rename to the_office/data/html/8-22.html diff --git a/the-office/data/html/8-23.html b/the_office/data/html/8-23.html similarity index 100% rename from the-office/data/html/8-23.html rename to the_office/data/html/8-23.html diff --git a/the-office/data/html/8-24.html b/the_office/data/html/8-24.html similarity index 100% rename from the-office/data/html/8-24.html rename to the_office/data/html/8-24.html diff --git a/the-office/data/html/9-01.html b/the_office/data/html/9-01.html similarity index 100% rename from the-office/data/html/9-01.html rename to the_office/data/html/9-01.html diff --git a/the-office/data/html/9-02.html b/the_office/data/html/9-02.html similarity index 100% rename from the-office/data/html/9-02.html rename to the_office/data/html/9-02.html diff --git a/the-office/data/html/9-03.html b/the_office/data/html/9-03.html similarity index 100% rename from the-office/data/html/9-03.html rename to the_office/data/html/9-03.html diff --git a/the-office/data/html/9-04.html b/the_office/data/html/9-04.html similarity index 100% rename from the-office/data/html/9-04.html rename to the_office/data/html/9-04.html diff --git a/the-office/data/html/9-05.html b/the_office/data/html/9-05.html similarity index 100% rename from the-office/data/html/9-05.html rename to the_office/data/html/9-05.html diff --git a/the-office/data/html/9-06.html b/the_office/data/html/9-06.html similarity index 100% rename from the-office/data/html/9-06.html rename to the_office/data/html/9-06.html diff --git a/the-office/data/html/9-07.html b/the_office/data/html/9-07.html similarity index 100% rename from the-office/data/html/9-07.html rename to the_office/data/html/9-07.html diff --git a/the-office/data/html/9-08.html b/the_office/data/html/9-08.html similarity index 100% rename from the-office/data/html/9-08.html rename to the_office/data/html/9-08.html diff --git a/the-office/data/html/9-09.html b/the_office/data/html/9-09.html similarity index 100% rename from the-office/data/html/9-09.html rename to the_office/data/html/9-09.html diff --git a/the-office/data/html/9-10.html b/the_office/data/html/9-10.html similarity index 100% rename from the-office/data/html/9-10.html rename to the_office/data/html/9-10.html diff --git a/the-office/data/html/9-11.html b/the_office/data/html/9-11.html similarity index 100% rename from the-office/data/html/9-11.html rename to the_office/data/html/9-11.html diff --git a/the-office/data/html/9-12.html b/the_office/data/html/9-12.html similarity index 100% rename from the-office/data/html/9-12.html rename to the_office/data/html/9-12.html diff --git a/the-office/data/html/9-13.html b/the_office/data/html/9-13.html similarity index 100% rename from the-office/data/html/9-13.html rename to the_office/data/html/9-13.html diff --git a/the-office/data/html/9-14.html b/the_office/data/html/9-14.html similarity index 100% rename from the-office/data/html/9-14.html rename to the_office/data/html/9-14.html diff --git a/the-office/data/html/9-15.html b/the_office/data/html/9-15.html similarity index 100% rename from the-office/data/html/9-15.html rename to the_office/data/html/9-15.html diff --git a/the-office/data/html/9-16.html b/the_office/data/html/9-16.html similarity index 100% rename from the-office/data/html/9-16.html rename to the_office/data/html/9-16.html diff --git a/the-office/data/html/9-17.html b/the_office/data/html/9-17.html similarity index 100% rename from the-office/data/html/9-17.html rename to the_office/data/html/9-17.html diff --git a/the-office/data/html/9-18.html b/the_office/data/html/9-18.html similarity index 100% rename from the-office/data/html/9-18.html rename to the_office/data/html/9-18.html diff --git a/the-office/data/html/9-19.html b/the_office/data/html/9-19.html similarity index 100% rename from the-office/data/html/9-19.html rename to the_office/data/html/9-19.html diff --git a/the-office/data/html/9-20.html b/the_office/data/html/9-20.html similarity index 100% rename from the-office/data/html/9-20.html rename to the_office/data/html/9-20.html diff --git a/the-office/data/html/9-21.html b/the_office/data/html/9-21.html similarity index 100% rename from the-office/data/html/9-21.html rename to the_office/data/html/9-21.html diff --git a/the-office/data/html/9-22.html b/the_office/data/html/9-22.html similarity index 100% rename from the-office/data/html/9-22.html rename to the_office/data/html/9-22.html diff --git a/the-office/data/html/9-23.html b/the_office/data/html/9-23.html similarity index 100% rename from the-office/data/html/9-23.html rename to the_office/data/html/9-23.html diff --git a/the-office/data/processed/1-01.json b/the_office/data/processed/1-01.json similarity index 100% rename from the-office/data/processed/1-01.json rename to the_office/data/processed/1-01.json diff --git a/the-office/data/processed/1-02.json b/the_office/data/processed/1-02.json similarity index 100% rename from the-office/data/processed/1-02.json rename to the_office/data/processed/1-02.json diff --git a/the-office/data/processed/1-03.json b/the_office/data/processed/1-03.json similarity index 100% rename from the-office/data/processed/1-03.json rename to the_office/data/processed/1-03.json diff --git a/the-office/data/processed/1-04.json b/the_office/data/processed/1-04.json similarity index 100% rename from the-office/data/processed/1-04.json rename to the_office/data/processed/1-04.json diff --git a/the-office/data/processed/1-05.json b/the_office/data/processed/1-05.json similarity index 100% rename from the-office/data/processed/1-05.json rename to the_office/data/processed/1-05.json diff --git a/the-office/data/processed/2-01.json b/the_office/data/processed/2-01.json similarity index 100% rename from the-office/data/processed/2-01.json rename to the_office/data/processed/2-01.json diff --git a/the-office/data/processed/2-02.json b/the_office/data/processed/2-02.json similarity index 100% rename from the-office/data/processed/2-02.json rename to the_office/data/processed/2-02.json diff --git a/the-office/data/processed/2-03.json b/the_office/data/processed/2-03.json similarity index 100% rename from the-office/data/processed/2-03.json rename to the_office/data/processed/2-03.json diff --git a/the-office/data/processed/2-04.json b/the_office/data/processed/2-04.json similarity index 100% rename from the-office/data/processed/2-04.json rename to the_office/data/processed/2-04.json diff --git a/the-office/data/processed/2-05.json b/the_office/data/processed/2-05.json similarity index 100% rename from the-office/data/processed/2-05.json rename to the_office/data/processed/2-05.json diff --git a/the-office/data/processed/2-06.json b/the_office/data/processed/2-06.json similarity index 100% rename from the-office/data/processed/2-06.json rename to the_office/data/processed/2-06.json diff --git a/the-office/data/processed/2-07.json b/the_office/data/processed/2-07.json similarity index 100% rename from the-office/data/processed/2-07.json rename to the_office/data/processed/2-07.json diff --git a/the-office/data/processed/2-08.json b/the_office/data/processed/2-08.json similarity index 100% rename from the-office/data/processed/2-08.json rename to the_office/data/processed/2-08.json diff --git a/the-office/data/processed/2-09.json b/the_office/data/processed/2-09.json similarity index 100% rename from the-office/data/processed/2-09.json rename to the_office/data/processed/2-09.json diff --git a/the-office/data/processed/2-11.json b/the_office/data/processed/2-11.json similarity index 100% rename from the-office/data/processed/2-11.json rename to the_office/data/processed/2-11.json diff --git a/the-office/data/processed/2-12.json b/the_office/data/processed/2-12.json similarity index 100% rename from the-office/data/processed/2-12.json rename to the_office/data/processed/2-12.json diff --git a/the-office/data/processed/2-13.json b/the_office/data/processed/2-13.json similarity index 100% rename from the-office/data/processed/2-13.json rename to the_office/data/processed/2-13.json diff --git a/the-office/data/processed/2-14.json b/the_office/data/processed/2-14.json similarity index 100% rename from the-office/data/processed/2-14.json rename to the_office/data/processed/2-14.json diff --git a/the-office/data/processed/2-15.json b/the_office/data/processed/2-15.json similarity index 100% rename from the-office/data/processed/2-15.json rename to the_office/data/processed/2-15.json diff --git a/the-office/data/processed/2-16.json b/the_office/data/processed/2-16.json similarity index 100% rename from the-office/data/processed/2-16.json rename to the_office/data/processed/2-16.json diff --git a/the-office/data/processed/2-17.json b/the_office/data/processed/2-17.json similarity index 100% rename from the-office/data/processed/2-17.json rename to the_office/data/processed/2-17.json diff --git a/the-office/data/processed/2-18.json b/the_office/data/processed/2-18.json similarity index 100% rename from the-office/data/processed/2-18.json rename to the_office/data/processed/2-18.json diff --git a/the-office/data/processed/2-19.json b/the_office/data/processed/2-19.json similarity index 100% rename from the-office/data/processed/2-19.json rename to the_office/data/processed/2-19.json diff --git a/the-office/data/processed/2-20.json b/the_office/data/processed/2-20.json similarity index 100% rename from the-office/data/processed/2-20.json rename to the_office/data/processed/2-20.json diff --git a/the-office/data/processed/2-21.json b/the_office/data/processed/2-21.json similarity index 100% rename from the-office/data/processed/2-21.json rename to the_office/data/processed/2-21.json diff --git a/the-office/data/processed/2-22.json b/the_office/data/processed/2-22.json similarity index 100% rename from the-office/data/processed/2-22.json rename to the_office/data/processed/2-22.json diff --git a/the-office/data/processed/3-01.json b/the_office/data/processed/3-01.json similarity index 100% rename from the-office/data/processed/3-01.json rename to the_office/data/processed/3-01.json diff --git a/the-office/data/processed/3-02.json b/the_office/data/processed/3-02.json similarity index 100% rename from the-office/data/processed/3-02.json rename to the_office/data/processed/3-02.json diff --git a/the-office/data/processed/3-03.json b/the_office/data/processed/3-03.json similarity index 100% rename from the-office/data/processed/3-03.json rename to the_office/data/processed/3-03.json diff --git a/the-office/data/processed/3-04.json b/the_office/data/processed/3-04.json similarity index 100% rename from the-office/data/processed/3-04.json rename to the_office/data/processed/3-04.json diff --git a/the-office/data/processed/3-05.json b/the_office/data/processed/3-05.json similarity index 100% rename from the-office/data/processed/3-05.json rename to the_office/data/processed/3-05.json diff --git a/the-office/data/processed/3-06.json b/the_office/data/processed/3-06.json similarity index 100% rename from the-office/data/processed/3-06.json rename to the_office/data/processed/3-06.json diff --git a/the-office/data/processed/3-07.json b/the_office/data/processed/3-07.json similarity index 100% rename from the-office/data/processed/3-07.json rename to the_office/data/processed/3-07.json diff --git a/the-office/data/processed/3-08.json b/the_office/data/processed/3-08.json similarity index 100% rename from the-office/data/processed/3-08.json rename to the_office/data/processed/3-08.json diff --git a/the-office/data/processed/3-09.json b/the_office/data/processed/3-09.json similarity index 100% rename from the-office/data/processed/3-09.json rename to the_office/data/processed/3-09.json diff --git a/the-office/data/processed/3-10.json b/the_office/data/processed/3-10.json similarity index 100% rename from the-office/data/processed/3-10.json rename to the_office/data/processed/3-10.json diff --git a/the-office/data/raw/1-01.txt b/the_office/data/raw/1-01.txt similarity index 100% rename from the-office/data/raw/1-01.txt rename to the_office/data/raw/1-01.txt diff --git a/the-office/data/raw/1-02.txt b/the_office/data/raw/1-02.txt similarity index 100% rename from the-office/data/raw/1-02.txt rename to the_office/data/raw/1-02.txt diff --git a/the-office/data/raw/1-03.txt b/the_office/data/raw/1-03.txt similarity index 100% rename from the-office/data/raw/1-03.txt rename to the_office/data/raw/1-03.txt diff --git a/the-office/data/raw/1-04.txt b/the_office/data/raw/1-04.txt similarity index 100% rename from the-office/data/raw/1-04.txt rename to the_office/data/raw/1-04.txt diff --git a/the-office/data/raw/1-05.txt b/the_office/data/raw/1-05.txt similarity index 100% rename from the-office/data/raw/1-05.txt rename to the_office/data/raw/1-05.txt diff --git a/the-office/data/raw/1-06.txt b/the_office/data/raw/1-06.txt similarity index 100% rename from the-office/data/raw/1-06.txt rename to the_office/data/raw/1-06.txt diff --git a/the-office/data/raw/2-01.txt b/the_office/data/raw/2-01.txt similarity index 100% rename from the-office/data/raw/2-01.txt rename to the_office/data/raw/2-01.txt diff --git a/the-office/data/raw/2-02.txt b/the_office/data/raw/2-02.txt similarity index 100% rename from the-office/data/raw/2-02.txt rename to the_office/data/raw/2-02.txt diff --git a/the-office/data/raw/2-03.txt b/the_office/data/raw/2-03.txt similarity index 100% rename from the-office/data/raw/2-03.txt rename to the_office/data/raw/2-03.txt diff --git a/the-office/data/raw/2-04.txt b/the_office/data/raw/2-04.txt similarity index 100% rename from the-office/data/raw/2-04.txt rename to the_office/data/raw/2-04.txt diff --git a/the-office/data/raw/2-05.txt b/the_office/data/raw/2-05.txt similarity index 100% rename from the-office/data/raw/2-05.txt rename to the_office/data/raw/2-05.txt diff --git a/the-office/data/raw/2-06.txt b/the_office/data/raw/2-06.txt similarity index 100% rename from the-office/data/raw/2-06.txt rename to the_office/data/raw/2-06.txt diff --git a/the-office/data/raw/2-07.txt b/the_office/data/raw/2-07.txt similarity index 100% rename from the-office/data/raw/2-07.txt rename to the_office/data/raw/2-07.txt diff --git a/the-office/data/raw/2-08.txt b/the_office/data/raw/2-08.txt similarity index 100% rename from the-office/data/raw/2-08.txt rename to the_office/data/raw/2-08.txt diff --git a/the-office/data/raw/2-09.txt b/the_office/data/raw/2-09.txt similarity index 100% rename from the-office/data/raw/2-09.txt rename to the_office/data/raw/2-09.txt diff --git a/the-office/data/raw/2-10.txt b/the_office/data/raw/2-10.txt similarity index 100% rename from the-office/data/raw/2-10.txt rename to the_office/data/raw/2-10.txt diff --git a/the-office/data/raw/2-11.txt b/the_office/data/raw/2-11.txt similarity index 100% rename from the-office/data/raw/2-11.txt rename to the_office/data/raw/2-11.txt diff --git a/the-office/data/raw/2-12.txt b/the_office/data/raw/2-12.txt similarity index 100% rename from the-office/data/raw/2-12.txt rename to the_office/data/raw/2-12.txt diff --git a/the-office/data/raw/2-13.txt b/the_office/data/raw/2-13.txt similarity index 100% rename from the-office/data/raw/2-13.txt rename to the_office/data/raw/2-13.txt diff --git a/the-office/data/raw/2-14.txt b/the_office/data/raw/2-14.txt similarity index 100% rename from the-office/data/raw/2-14.txt rename to the_office/data/raw/2-14.txt diff --git a/the-office/data/raw/2-15.txt b/the_office/data/raw/2-15.txt similarity index 100% rename from the-office/data/raw/2-15.txt rename to the_office/data/raw/2-15.txt diff --git a/the-office/data/raw/2-16.txt b/the_office/data/raw/2-16.txt similarity index 100% rename from the-office/data/raw/2-16.txt rename to the_office/data/raw/2-16.txt diff --git a/the-office/data/raw/2-17.txt b/the_office/data/raw/2-17.txt similarity index 100% rename from the-office/data/raw/2-17.txt rename to the_office/data/raw/2-17.txt diff --git a/the-office/data/raw/2-18.txt b/the_office/data/raw/2-18.txt similarity index 100% rename from the-office/data/raw/2-18.txt rename to the_office/data/raw/2-18.txt diff --git a/the-office/data/raw/2-19.txt b/the_office/data/raw/2-19.txt similarity index 100% rename from the-office/data/raw/2-19.txt rename to the_office/data/raw/2-19.txt diff --git a/the-office/data/raw/2-20.txt b/the_office/data/raw/2-20.txt similarity index 100% rename from the-office/data/raw/2-20.txt rename to the_office/data/raw/2-20.txt diff --git a/the-office/data/raw/2-21.txt b/the_office/data/raw/2-21.txt similarity index 100% rename from the-office/data/raw/2-21.txt rename to the_office/data/raw/2-21.txt diff --git a/the-office/data/raw/2-22.txt b/the_office/data/raw/2-22.txt similarity index 100% rename from the-office/data/raw/2-22.txt rename to the_office/data/raw/2-22.txt diff --git a/the-office/data/raw/3-01.txt b/the_office/data/raw/3-01.txt similarity index 100% rename from the-office/data/raw/3-01.txt rename to the_office/data/raw/3-01.txt diff --git a/the-office/data/raw/3-02.txt b/the_office/data/raw/3-02.txt similarity index 100% rename from the-office/data/raw/3-02.txt rename to the_office/data/raw/3-02.txt diff --git a/the-office/data/raw/3-03.txt b/the_office/data/raw/3-03.txt similarity index 100% rename from the-office/data/raw/3-03.txt rename to the_office/data/raw/3-03.txt diff --git a/the-office/data/raw/3-04.txt b/the_office/data/raw/3-04.txt similarity index 100% rename from the-office/data/raw/3-04.txt rename to the_office/data/raw/3-04.txt diff --git a/the-office/data/raw/3-05.txt b/the_office/data/raw/3-05.txt similarity index 100% rename from the-office/data/raw/3-05.txt rename to the_office/data/raw/3-05.txt diff --git a/the-office/data/raw/3-06.txt b/the_office/data/raw/3-06.txt similarity index 100% rename from the-office/data/raw/3-06.txt rename to the_office/data/raw/3-06.txt diff --git a/the-office/data/raw/3-07.txt b/the_office/data/raw/3-07.txt similarity index 100% rename from the-office/data/raw/3-07.txt rename to the_office/data/raw/3-07.txt diff --git a/the-office/data/raw/3-08.txt b/the_office/data/raw/3-08.txt similarity index 100% rename from the-office/data/raw/3-08.txt rename to the_office/data/raw/3-08.txt diff --git a/the-office/data/raw/3-09.txt b/the_office/data/raw/3-09.txt similarity index 100% rename from the-office/data/raw/3-09.txt rename to the_office/data/raw/3-09.txt diff --git a/the-office/data/raw/3-10.txt b/the_office/data/raw/3-10.txt similarity index 100% rename from the-office/data/raw/3-10.txt rename to the_office/data/raw/3-10.txt diff --git a/the-office/data/raw/3-11.txt b/the_office/data/raw/3-11.txt similarity index 100% rename from the-office/data/raw/3-11.txt rename to the_office/data/raw/3-11.txt diff --git a/the-office/data/raw/3-12.txt b/the_office/data/raw/3-12.txt similarity index 100% rename from the-office/data/raw/3-12.txt rename to the_office/data/raw/3-12.txt diff --git a/the-office/data/raw/3-13.txt b/the_office/data/raw/3-13.txt similarity index 100% rename from the-office/data/raw/3-13.txt rename to the_office/data/raw/3-13.txt diff --git a/the-office/data/raw/3-14.txt b/the_office/data/raw/3-14.txt similarity index 100% rename from the-office/data/raw/3-14.txt rename to the_office/data/raw/3-14.txt diff --git a/the-office/data/raw/3-15.txt b/the_office/data/raw/3-15.txt similarity index 100% rename from the-office/data/raw/3-15.txt rename to the_office/data/raw/3-15.txt diff --git a/the-office/data/raw/3-16.txt b/the_office/data/raw/3-16.txt similarity index 100% rename from the-office/data/raw/3-16.txt rename to the_office/data/raw/3-16.txt diff --git a/the-office/data/raw/3-17.txt b/the_office/data/raw/3-17.txt similarity index 100% rename from the-office/data/raw/3-17.txt rename to the_office/data/raw/3-17.txt diff --git a/the-office/data/raw/3-18.txt b/the_office/data/raw/3-18.txt similarity index 100% rename from the-office/data/raw/3-18.txt rename to the_office/data/raw/3-18.txt diff --git a/the-office/data/raw/3-19.txt b/the_office/data/raw/3-19.txt similarity index 100% rename from the-office/data/raw/3-19.txt rename to the_office/data/raw/3-19.txt diff --git a/the-office/data/raw/3-20.txt b/the_office/data/raw/3-20.txt similarity index 100% rename from the-office/data/raw/3-20.txt rename to the_office/data/raw/3-20.txt diff --git a/the-office/data/raw/3-21.txt b/the_office/data/raw/3-21.txt similarity index 100% rename from the-office/data/raw/3-21.txt rename to the_office/data/raw/3-21.txt diff --git a/the-office/data/raw/3-22.txt b/the_office/data/raw/3-22.txt similarity index 100% rename from the-office/data/raw/3-22.txt rename to the_office/data/raw/3-22.txt diff --git a/the-office/data/raw/3-23.txt b/the_office/data/raw/3-23.txt similarity index 100% rename from the-office/data/raw/3-23.txt rename to the_office/data/raw/3-23.txt diff --git a/the-office/data/raw/4-01.txt b/the_office/data/raw/4-01.txt similarity index 100% rename from the-office/data/raw/4-01.txt rename to the_office/data/raw/4-01.txt diff --git a/the-office/data/raw/4-02.txt b/the_office/data/raw/4-02.txt similarity index 100% rename from the-office/data/raw/4-02.txt rename to the_office/data/raw/4-02.txt diff --git a/the-office/data/raw/4-03.txt b/the_office/data/raw/4-03.txt similarity index 100% rename from the-office/data/raw/4-03.txt rename to the_office/data/raw/4-03.txt diff --git a/the-office/data/raw/4-04.txt b/the_office/data/raw/4-04.txt similarity index 100% rename from the-office/data/raw/4-04.txt rename to the_office/data/raw/4-04.txt diff --git a/the-office/data/raw/4-05.txt b/the_office/data/raw/4-05.txt similarity index 100% rename from the-office/data/raw/4-05.txt rename to the_office/data/raw/4-05.txt diff --git a/the-office/data/raw/4-06.txt b/the_office/data/raw/4-06.txt similarity index 100% rename from the-office/data/raw/4-06.txt rename to the_office/data/raw/4-06.txt diff --git a/the-office/data/raw/4-07.txt b/the_office/data/raw/4-07.txt similarity index 100% rename from the-office/data/raw/4-07.txt rename to the_office/data/raw/4-07.txt diff --git a/the-office/data/raw/4-09.txt b/the_office/data/raw/4-09.txt similarity index 100% rename from the-office/data/raw/4-09.txt rename to the_office/data/raw/4-09.txt diff --git a/the-office/data/raw/4-10.txt b/the_office/data/raw/4-10.txt similarity index 100% rename from the-office/data/raw/4-10.txt rename to the_office/data/raw/4-10.txt diff --git a/the-office/data/raw/4-11.txt b/the_office/data/raw/4-11.txt similarity index 100% rename from the-office/data/raw/4-11.txt rename to the_office/data/raw/4-11.txt diff --git a/the-office/data/raw/4-12.txt b/the_office/data/raw/4-12.txt similarity index 100% rename from the-office/data/raw/4-12.txt rename to the_office/data/raw/4-12.txt diff --git a/the-office/data/raw/4-13.txt b/the_office/data/raw/4-13.txt similarity index 100% rename from the-office/data/raw/4-13.txt rename to the_office/data/raw/4-13.txt diff --git a/the-office/data/raw/4-14.txt b/the_office/data/raw/4-14.txt similarity index 100% rename from the-office/data/raw/4-14.txt rename to the_office/data/raw/4-14.txt diff --git a/the-office/data/raw/5-01.txt b/the_office/data/raw/5-01.txt similarity index 100% rename from the-office/data/raw/5-01.txt rename to the_office/data/raw/5-01.txt diff --git a/the-office/data/raw/5-02.txt b/the_office/data/raw/5-02.txt similarity index 100% rename from the-office/data/raw/5-02.txt rename to the_office/data/raw/5-02.txt diff --git a/the-office/data/raw/5-03.txt b/the_office/data/raw/5-03.txt similarity index 100% rename from the-office/data/raw/5-03.txt rename to the_office/data/raw/5-03.txt diff --git a/the-office/data/raw/5-04.txt b/the_office/data/raw/5-04.txt similarity index 100% rename from the-office/data/raw/5-04.txt rename to the_office/data/raw/5-04.txt diff --git a/the-office/data/raw/5-05.txt b/the_office/data/raw/5-05.txt similarity index 100% rename from the-office/data/raw/5-05.txt rename to the_office/data/raw/5-05.txt diff --git a/the-office/data/raw/5-06.txt b/the_office/data/raw/5-06.txt similarity index 100% rename from the-office/data/raw/5-06.txt rename to the_office/data/raw/5-06.txt diff --git a/the-office/data/raw/5-07.txt b/the_office/data/raw/5-07.txt similarity index 100% rename from the-office/data/raw/5-07.txt rename to the_office/data/raw/5-07.txt diff --git a/the-office/data/raw/5-08.txt b/the_office/data/raw/5-08.txt similarity index 100% rename from the-office/data/raw/5-08.txt rename to the_office/data/raw/5-08.txt diff --git a/the-office/data/raw/5-09.txt b/the_office/data/raw/5-09.txt similarity index 100% rename from the-office/data/raw/5-09.txt rename to the_office/data/raw/5-09.txt diff --git a/the-office/data/raw/5-10.txt b/the_office/data/raw/5-10.txt similarity index 100% rename from the-office/data/raw/5-10.txt rename to the_office/data/raw/5-10.txt diff --git a/the-office/data/raw/5-11.txt b/the_office/data/raw/5-11.txt similarity index 100% rename from the-office/data/raw/5-11.txt rename to the_office/data/raw/5-11.txt diff --git a/the-office/data/raw/5-12.txt b/the_office/data/raw/5-12.txt similarity index 100% rename from the-office/data/raw/5-12.txt rename to the_office/data/raw/5-12.txt diff --git a/the-office/data/raw/5-13.txt b/the_office/data/raw/5-13.txt similarity index 100% rename from the-office/data/raw/5-13.txt rename to the_office/data/raw/5-13.txt diff --git a/the-office/data/raw/5-14.txt b/the_office/data/raw/5-14.txt similarity index 100% rename from the-office/data/raw/5-14.txt rename to the_office/data/raw/5-14.txt diff --git a/the-office/data/raw/5-15.txt b/the_office/data/raw/5-15.txt similarity index 100% rename from the-office/data/raw/5-15.txt rename to the_office/data/raw/5-15.txt diff --git a/the-office/data/raw/5-16.txt b/the_office/data/raw/5-16.txt similarity index 100% rename from the-office/data/raw/5-16.txt rename to the_office/data/raw/5-16.txt diff --git a/the-office/data/raw/5-17.txt b/the_office/data/raw/5-17.txt similarity index 100% rename from the-office/data/raw/5-17.txt rename to the_office/data/raw/5-17.txt diff --git a/the-office/data/raw/5-19.txt b/the_office/data/raw/5-19.txt similarity index 100% rename from the-office/data/raw/5-19.txt rename to the_office/data/raw/5-19.txt diff --git a/the-office/data/raw/5-20.txt b/the_office/data/raw/5-20.txt similarity index 100% rename from the-office/data/raw/5-20.txt rename to the_office/data/raw/5-20.txt diff --git a/the-office/data/raw/5-21.txt b/the_office/data/raw/5-21.txt similarity index 100% rename from the-office/data/raw/5-21.txt rename to the_office/data/raw/5-21.txt diff --git a/the-office/data/raw/5-22.txt b/the_office/data/raw/5-22.txt similarity index 100% rename from the-office/data/raw/5-22.txt rename to the_office/data/raw/5-22.txt diff --git a/the-office/data/raw/5-23.txt b/the_office/data/raw/5-23.txt similarity index 100% rename from the-office/data/raw/5-23.txt rename to the_office/data/raw/5-23.txt diff --git a/the-office/data/raw/5-24.txt b/the_office/data/raw/5-24.txt similarity index 100% rename from the-office/data/raw/5-24.txt rename to the_office/data/raw/5-24.txt diff --git a/the-office/data/raw/5-25.txt b/the_office/data/raw/5-25.txt similarity index 100% rename from the-office/data/raw/5-25.txt rename to the_office/data/raw/5-25.txt diff --git a/the-office/data/raw/5-26.txt b/the_office/data/raw/5-26.txt similarity index 100% rename from the-office/data/raw/5-26.txt rename to the_office/data/raw/5-26.txt diff --git a/the-office/data/raw/6-01.txt b/the_office/data/raw/6-01.txt similarity index 100% rename from the-office/data/raw/6-01.txt rename to the_office/data/raw/6-01.txt diff --git a/the-office/data/raw/6-02.txt b/the_office/data/raw/6-02.txt similarity index 100% rename from the-office/data/raw/6-02.txt rename to the_office/data/raw/6-02.txt diff --git a/the-office/data/raw/6-03.txt b/the_office/data/raw/6-03.txt similarity index 100% rename from the-office/data/raw/6-03.txt rename to the_office/data/raw/6-03.txt diff --git a/the-office/data/raw/6-04.txt b/the_office/data/raw/6-04.txt similarity index 100% rename from the-office/data/raw/6-04.txt rename to the_office/data/raw/6-04.txt diff --git a/the-office/data/raw/6-05.txt b/the_office/data/raw/6-05.txt similarity index 100% rename from the-office/data/raw/6-05.txt rename to the_office/data/raw/6-05.txt diff --git a/the-office/data/raw/6-06.txt b/the_office/data/raw/6-06.txt similarity index 100% rename from the-office/data/raw/6-06.txt rename to the_office/data/raw/6-06.txt diff --git a/the-office/data/raw/6-07.txt b/the_office/data/raw/6-07.txt similarity index 100% rename from the-office/data/raw/6-07.txt rename to the_office/data/raw/6-07.txt diff --git a/the-office/data/raw/6-08.txt b/the_office/data/raw/6-08.txt similarity index 100% rename from the-office/data/raw/6-08.txt rename to the_office/data/raw/6-08.txt diff --git a/the-office/data/raw/6-09.txt b/the_office/data/raw/6-09.txt similarity index 100% rename from the-office/data/raw/6-09.txt rename to the_office/data/raw/6-09.txt diff --git a/the-office/data/raw/6-10.txt b/the_office/data/raw/6-10.txt similarity index 100% rename from the-office/data/raw/6-10.txt rename to the_office/data/raw/6-10.txt diff --git a/the-office/data/raw/6-11.txt b/the_office/data/raw/6-11.txt similarity index 100% rename from the-office/data/raw/6-11.txt rename to the_office/data/raw/6-11.txt diff --git a/the-office/data/raw/6-12.txt b/the_office/data/raw/6-12.txt similarity index 100% rename from the-office/data/raw/6-12.txt rename to the_office/data/raw/6-12.txt diff --git a/the-office/data/raw/6-13.txt b/the_office/data/raw/6-13.txt similarity index 100% rename from the-office/data/raw/6-13.txt rename to the_office/data/raw/6-13.txt diff --git a/the-office/data/raw/6-14.txt b/the_office/data/raw/6-14.txt similarity index 100% rename from the-office/data/raw/6-14.txt rename to the_office/data/raw/6-14.txt diff --git a/the-office/data/raw/6-15.txt b/the_office/data/raw/6-15.txt similarity index 100% rename from the-office/data/raw/6-15.txt rename to the_office/data/raw/6-15.txt diff --git a/the-office/data/raw/6-16.txt b/the_office/data/raw/6-16.txt similarity index 100% rename from the-office/data/raw/6-16.txt rename to the_office/data/raw/6-16.txt diff --git a/the-office/data/raw/6-17.txt b/the_office/data/raw/6-17.txt similarity index 100% rename from the-office/data/raw/6-17.txt rename to the_office/data/raw/6-17.txt diff --git a/the-office/data/raw/6-18.txt b/the_office/data/raw/6-18.txt similarity index 100% rename from the-office/data/raw/6-18.txt rename to the_office/data/raw/6-18.txt diff --git a/the-office/data/raw/6-19.txt b/the_office/data/raw/6-19.txt similarity index 100% rename from the-office/data/raw/6-19.txt rename to the_office/data/raw/6-19.txt diff --git a/the-office/data/raw/6-20.txt b/the_office/data/raw/6-20.txt similarity index 100% rename from the-office/data/raw/6-20.txt rename to the_office/data/raw/6-20.txt diff --git a/the-office/data/raw/6-21.txt b/the_office/data/raw/6-21.txt similarity index 100% rename from the-office/data/raw/6-21.txt rename to the_office/data/raw/6-21.txt diff --git a/the-office/data/raw/6-22.txt b/the_office/data/raw/6-22.txt similarity index 100% rename from the-office/data/raw/6-22.txt rename to the_office/data/raw/6-22.txt diff --git a/the-office/data/raw/6-23.txt b/the_office/data/raw/6-23.txt similarity index 100% rename from the-office/data/raw/6-23.txt rename to the_office/data/raw/6-23.txt diff --git a/the-office/data/raw/6-24.txt b/the_office/data/raw/6-24.txt similarity index 100% rename from the-office/data/raw/6-24.txt rename to the_office/data/raw/6-24.txt diff --git a/the-office/data/raw/7-01.txt b/the_office/data/raw/7-01.txt similarity index 100% rename from the-office/data/raw/7-01.txt rename to the_office/data/raw/7-01.txt diff --git a/the-office/data/raw/7-02.txt b/the_office/data/raw/7-02.txt similarity index 100% rename from the-office/data/raw/7-02.txt rename to the_office/data/raw/7-02.txt diff --git a/the-office/data/raw/7-03.txt b/the_office/data/raw/7-03.txt similarity index 100% rename from the-office/data/raw/7-03.txt rename to the_office/data/raw/7-03.txt diff --git a/the-office/data/raw/7-04.txt b/the_office/data/raw/7-04.txt similarity index 100% rename from the-office/data/raw/7-04.txt rename to the_office/data/raw/7-04.txt diff --git a/the-office/data/raw/7-05.txt b/the_office/data/raw/7-05.txt similarity index 100% rename from the-office/data/raw/7-05.txt rename to the_office/data/raw/7-05.txt diff --git a/the-office/data/raw/7-06.txt b/the_office/data/raw/7-06.txt similarity index 100% rename from the-office/data/raw/7-06.txt rename to the_office/data/raw/7-06.txt diff --git a/the-office/data/raw/7-07.txt b/the_office/data/raw/7-07.txt similarity index 100% rename from the-office/data/raw/7-07.txt rename to the_office/data/raw/7-07.txt diff --git a/the-office/data/raw/7-08.txt b/the_office/data/raw/7-08.txt similarity index 100% rename from the-office/data/raw/7-08.txt rename to the_office/data/raw/7-08.txt diff --git a/the-office/data/raw/7-09.txt b/the_office/data/raw/7-09.txt similarity index 100% rename from the-office/data/raw/7-09.txt rename to the_office/data/raw/7-09.txt diff --git a/the-office/data/raw/7-10.txt b/the_office/data/raw/7-10.txt similarity index 100% rename from the-office/data/raw/7-10.txt rename to the_office/data/raw/7-10.txt diff --git a/the-office/data/raw/7-11.txt b/the_office/data/raw/7-11.txt similarity index 100% rename from the-office/data/raw/7-11.txt rename to the_office/data/raw/7-11.txt diff --git a/the-office/data/raw/7-12.txt b/the_office/data/raw/7-12.txt similarity index 100% rename from the-office/data/raw/7-12.txt rename to the_office/data/raw/7-12.txt diff --git a/the-office/data/raw/7-13.txt b/the_office/data/raw/7-13.txt similarity index 100% rename from the-office/data/raw/7-13.txt rename to the_office/data/raw/7-13.txt diff --git a/the-office/data/raw/7-14.txt b/the_office/data/raw/7-14.txt similarity index 100% rename from the-office/data/raw/7-14.txt rename to the_office/data/raw/7-14.txt diff --git a/the-office/data/raw/7-15.txt b/the_office/data/raw/7-15.txt similarity index 100% rename from the-office/data/raw/7-15.txt rename to the_office/data/raw/7-15.txt diff --git a/the-office/data/raw/7-16.txt b/the_office/data/raw/7-16.txt similarity index 100% rename from the-office/data/raw/7-16.txt rename to the_office/data/raw/7-16.txt diff --git a/the-office/data/raw/7-17.txt b/the_office/data/raw/7-17.txt similarity index 100% rename from the-office/data/raw/7-17.txt rename to the_office/data/raw/7-17.txt diff --git a/the-office/data/raw/7-18.txt b/the_office/data/raw/7-18.txt similarity index 100% rename from the-office/data/raw/7-18.txt rename to the_office/data/raw/7-18.txt diff --git a/the-office/data/raw/7-19.txt b/the_office/data/raw/7-19.txt similarity index 100% rename from the-office/data/raw/7-19.txt rename to the_office/data/raw/7-19.txt diff --git a/the-office/data/raw/7-20.txt b/the_office/data/raw/7-20.txt similarity index 100% rename from the-office/data/raw/7-20.txt rename to the_office/data/raw/7-20.txt diff --git a/the-office/data/raw/7-21.txt b/the_office/data/raw/7-21.txt similarity index 100% rename from the-office/data/raw/7-21.txt rename to the_office/data/raw/7-21.txt diff --git a/the-office/data/raw/7-22.txt b/the_office/data/raw/7-22.txt similarity index 100% rename from the-office/data/raw/7-22.txt rename to the_office/data/raw/7-22.txt diff --git a/the-office/data/raw/7-23.txt b/the_office/data/raw/7-23.txt similarity index 100% rename from the-office/data/raw/7-23.txt rename to the_office/data/raw/7-23.txt diff --git a/the-office/data/raw/7-24.txt b/the_office/data/raw/7-24.txt similarity index 100% rename from the-office/data/raw/7-24.txt rename to the_office/data/raw/7-24.txt diff --git a/the-office/data/raw/8-01.txt b/the_office/data/raw/8-01.txt similarity index 100% rename from the-office/data/raw/8-01.txt rename to the_office/data/raw/8-01.txt diff --git a/the-office/data/raw/8-02.txt b/the_office/data/raw/8-02.txt similarity index 100% rename from the-office/data/raw/8-02.txt rename to the_office/data/raw/8-02.txt diff --git a/the-office/data/raw/8-03.txt b/the_office/data/raw/8-03.txt similarity index 100% rename from the-office/data/raw/8-03.txt rename to the_office/data/raw/8-03.txt diff --git a/the-office/data/raw/8-04.txt b/the_office/data/raw/8-04.txt similarity index 100% rename from the-office/data/raw/8-04.txt rename to the_office/data/raw/8-04.txt diff --git a/the-office/data/raw/8-05.txt b/the_office/data/raw/8-05.txt similarity index 100% rename from the-office/data/raw/8-05.txt rename to the_office/data/raw/8-05.txt diff --git a/the-office/data/raw/8-06.txt b/the_office/data/raw/8-06.txt similarity index 100% rename from the-office/data/raw/8-06.txt rename to the_office/data/raw/8-06.txt diff --git a/the-office/data/raw/8-07.txt b/the_office/data/raw/8-07.txt similarity index 100% rename from the-office/data/raw/8-07.txt rename to the_office/data/raw/8-07.txt diff --git a/the-office/data/raw/8-08.txt b/the_office/data/raw/8-08.txt similarity index 100% rename from the-office/data/raw/8-08.txt rename to the_office/data/raw/8-08.txt diff --git a/the-office/data/raw/8-09.txt b/the_office/data/raw/8-09.txt similarity index 100% rename from the-office/data/raw/8-09.txt rename to the_office/data/raw/8-09.txt diff --git a/the-office/data/raw/8-10.txt b/the_office/data/raw/8-10.txt similarity index 100% rename from the-office/data/raw/8-10.txt rename to the_office/data/raw/8-10.txt diff --git a/the-office/data/raw/8-11.txt b/the_office/data/raw/8-11.txt similarity index 100% rename from the-office/data/raw/8-11.txt rename to the_office/data/raw/8-11.txt diff --git a/the-office/data/raw/8-12.txt b/the_office/data/raw/8-12.txt similarity index 100% rename from the-office/data/raw/8-12.txt rename to the_office/data/raw/8-12.txt diff --git a/the-office/data/raw/8-13.txt b/the_office/data/raw/8-13.txt similarity index 100% rename from the-office/data/raw/8-13.txt rename to the_office/data/raw/8-13.txt diff --git a/the-office/data/raw/8-14.txt b/the_office/data/raw/8-14.txt similarity index 100% rename from the-office/data/raw/8-14.txt rename to the_office/data/raw/8-14.txt diff --git a/the-office/data/raw/8-15.txt b/the_office/data/raw/8-15.txt similarity index 100% rename from the-office/data/raw/8-15.txt rename to the_office/data/raw/8-15.txt diff --git a/the-office/data/raw/8-16.txt b/the_office/data/raw/8-16.txt similarity index 100% rename from the-office/data/raw/8-16.txt rename to the_office/data/raw/8-16.txt diff --git a/the-office/data/raw/8-17.txt b/the_office/data/raw/8-17.txt similarity index 100% rename from the-office/data/raw/8-17.txt rename to the_office/data/raw/8-17.txt diff --git a/the-office/data/raw/8-18.txt b/the_office/data/raw/8-18.txt similarity index 100% rename from the-office/data/raw/8-18.txt rename to the_office/data/raw/8-18.txt diff --git a/the-office/data/raw/8-19.txt b/the_office/data/raw/8-19.txt similarity index 100% rename from the-office/data/raw/8-19.txt rename to the_office/data/raw/8-19.txt diff --git a/the-office/data/raw/8-20.txt b/the_office/data/raw/8-20.txt similarity index 100% rename from the-office/data/raw/8-20.txt rename to the_office/data/raw/8-20.txt diff --git a/the-office/data/raw/8-21.txt b/the_office/data/raw/8-21.txt similarity index 100% rename from the-office/data/raw/8-21.txt rename to the_office/data/raw/8-21.txt diff --git a/the-office/data/raw/8-22.txt b/the_office/data/raw/8-22.txt similarity index 100% rename from the-office/data/raw/8-22.txt rename to the_office/data/raw/8-22.txt diff --git a/the-office/data/raw/8-23.txt b/the_office/data/raw/8-23.txt similarity index 100% rename from the-office/data/raw/8-23.txt rename to the_office/data/raw/8-23.txt diff --git a/the-office/data/raw/8-24.txt b/the_office/data/raw/8-24.txt similarity index 100% rename from the-office/data/raw/8-24.txt rename to the_office/data/raw/8-24.txt diff --git a/the-office/data/raw/9-01.txt b/the_office/data/raw/9-01.txt similarity index 100% rename from the-office/data/raw/9-01.txt rename to the_office/data/raw/9-01.txt diff --git a/the-office/data/raw/9-02.txt b/the_office/data/raw/9-02.txt similarity index 100% rename from the-office/data/raw/9-02.txt rename to the_office/data/raw/9-02.txt diff --git a/the-office/data/raw/9-03.txt b/the_office/data/raw/9-03.txt similarity index 100% rename from the-office/data/raw/9-03.txt rename to the_office/data/raw/9-03.txt diff --git a/the-office/data/raw/9-04.txt b/the_office/data/raw/9-04.txt similarity index 100% rename from the-office/data/raw/9-04.txt rename to the_office/data/raw/9-04.txt diff --git a/the-office/data/raw/9-05.txt b/the_office/data/raw/9-05.txt similarity index 100% rename from the-office/data/raw/9-05.txt rename to the_office/data/raw/9-05.txt diff --git a/the-office/data/raw/9-06.txt b/the_office/data/raw/9-06.txt similarity index 100% rename from the-office/data/raw/9-06.txt rename to the_office/data/raw/9-06.txt diff --git a/the-office/data/raw/9-07.txt b/the_office/data/raw/9-07.txt similarity index 100% rename from the-office/data/raw/9-07.txt rename to the_office/data/raw/9-07.txt diff --git a/the-office/data/raw/9-08.txt b/the_office/data/raw/9-08.txt similarity index 100% rename from the-office/data/raw/9-08.txt rename to the_office/data/raw/9-08.txt diff --git a/the-office/data/raw/9-09.txt b/the_office/data/raw/9-09.txt similarity index 100% rename from the-office/data/raw/9-09.txt rename to the_office/data/raw/9-09.txt diff --git a/the-office/data/raw/9-10.txt b/the_office/data/raw/9-10.txt similarity index 100% rename from the-office/data/raw/9-10.txt rename to the_office/data/raw/9-10.txt diff --git a/the-office/data/raw/9-11.txt b/the_office/data/raw/9-11.txt similarity index 100% rename from the-office/data/raw/9-11.txt rename to the_office/data/raw/9-11.txt diff --git a/the-office/data/raw/9-12.txt b/the_office/data/raw/9-12.txt similarity index 100% rename from the-office/data/raw/9-12.txt rename to the_office/data/raw/9-12.txt diff --git a/the-office/data/raw/9-13.txt b/the_office/data/raw/9-13.txt similarity index 100% rename from the-office/data/raw/9-13.txt rename to the_office/data/raw/9-13.txt diff --git a/the-office/data/raw/9-14.txt b/the_office/data/raw/9-14.txt similarity index 100% rename from the-office/data/raw/9-14.txt rename to the_office/data/raw/9-14.txt diff --git a/the-office/data/raw/9-15.txt b/the_office/data/raw/9-15.txt similarity index 100% rename from the-office/data/raw/9-15.txt rename to the_office/data/raw/9-15.txt diff --git a/the-office/data/raw/9-16.txt b/the_office/data/raw/9-16.txt similarity index 100% rename from the-office/data/raw/9-16.txt rename to the_office/data/raw/9-16.txt diff --git a/the-office/data/raw/9-17.txt b/the_office/data/raw/9-17.txt similarity index 100% rename from the-office/data/raw/9-17.txt rename to the_office/data/raw/9-17.txt diff --git a/the-office/data/raw/9-18.txt b/the_office/data/raw/9-18.txt similarity index 100% rename from the-office/data/raw/9-18.txt rename to the_office/data/raw/9-18.txt diff --git a/the-office/data/raw/9-19.txt b/the_office/data/raw/9-19.txt similarity index 100% rename from the-office/data/raw/9-19.txt rename to the_office/data/raw/9-19.txt diff --git a/the-office/data/raw/9-20.txt b/the_office/data/raw/9-20.txt similarity index 100% rename from the-office/data/raw/9-20.txt rename to the_office/data/raw/9-20.txt diff --git a/the-office/data/raw/9-21.txt b/the_office/data/raw/9-21.txt similarity index 100% rename from the-office/data/raw/9-21.txt rename to the_office/data/raw/9-21.txt diff --git a/the-office/data/raw/9-22.txt b/the_office/data/raw/9-22.txt similarity index 100% rename from the-office/data/raw/9-22.txt rename to the_office/data/raw/9-22.txt diff --git a/the-office/data/raw/9-23.txt b/the_office/data/raw/9-23.txt similarity index 100% rename from the-office/data/raw/9-23.txt rename to the_office/data/raw/9-23.txt diff --git a/the-office/create_app.py b/the_office/templates/index.html similarity index 100% rename from the-office/create_app.py rename to the_office/templates/index.html