diff --git a/.gitignore b/.gitignore
index 2d56f814c04e94d4f9e7a278c044b56f719adeb5..3216ae58418d0c4a82cbad2821e04ddd6390f47f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
 .*
 !.gitignore
+!.env.example
 *.pyc
+__pycache__
 *.json
\ No newline at end of file
diff --git a/src/tutorial/tutorial/__init__.py b/sql/.gitignore
similarity index 100%
rename from src/tutorial/tutorial/__init__.py
rename to sql/.gitignore
diff --git a/src/.env.example b/src/.env.example
new file mode 100644
index 0000000000000000000000000000000000000000..4287ca8617970fa8fc025b75cb319c7032706910
--- /dev/null
+++ b/src/.env.example
@@ -0,0 +1 @@
+#
\ No newline at end of file
diff --git a/src/__init__.py b/src/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/tutorial/tutorial/items.py b/src/items/BookItem.py
similarity index 82%
rename from src/tutorial/tutorial/items.py
rename to src/items/BookItem.py
index 42f495da1dda58a3288e4de1216d3ec8a83aae64..205efbc02343836517a1759f9fc529010186c09b 100644
--- a/src/tutorial/tutorial/items.py
+++ b/src/items/BookItem.py
@@ -8,12 +8,6 @@
 import scrapy
 
 
-class TutorialItem(scrapy.Item):
-    # define the fields for your item here like:
-    # name = scrapy.Field()
-    pass
-
-
 class BookItem(scrapy.Item):
     url = scrapy.Field()
 
diff --git a/src/tutorial/tutorial/spiders/__init__.py b/src/items/__init__.py
similarity index 100%
rename from src/tutorial/tutorial/spiders/__init__.py
rename to src/items/__init__.py
diff --git a/src/middlewares/__init__.py b/src/middlewares/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..ebd689ac51d69c5e1dbbe80083c2b20a39f8bb79
--- /dev/null
+++ b/src/middlewares/__init__.py
@@ -0,0 +1,4 @@
+# This package will contain the spiders of your Scrapy project
+#
+# Please refer to the documentation for information on how to create and manage
+# your spiders.
diff --git a/src/tutorial/tutorial/middlewares.py b/src/middlewares/middlewares.py
similarity index 100%
rename from src/tutorial/tutorial/middlewares.py
rename to src/middlewares/middlewares.py
diff --git a/src/pipelines/__init__.py b/src/pipelines/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..ebd689ac51d69c5e1dbbe80083c2b20a39f8bb79
--- /dev/null
+++ b/src/pipelines/__init__.py
@@ -0,0 +1,4 @@
+# This package will contain the spiders of your Scrapy project
+#
+# Please refer to the documentation for information on how to create and manage
+# your spiders.
diff --git a/src/tutorial/tutorial/pipelines.py b/src/pipelines/pipelines.py
similarity index 100%
rename from src/tutorial/tutorial/pipelines.py
rename to src/pipelines/pipelines.py
diff --git a/src/tutorial/scrapy.cfg b/src/scrapy.cfg
similarity index 89%
rename from src/tutorial/scrapy.cfg
rename to src/scrapy.cfg
index d79f6f1c5455761dc2abde220ba3f493199be11a..5bb0b9f49f160a3dc3f1bc481fa0bc2a1c2fe50b 100644
--- a/src/tutorial/scrapy.cfg
+++ b/src/scrapy.cfg
@@ -4,7 +4,7 @@
 # https://scrapyd.readthedocs.io/en/latest/deploy.html
 
 [settings]
-default = tutorial.settings
+default = settings
 
 [deploy]
 #url = http://localhost:6800/
diff --git a/src/tutorial/tutorial/settings.py b/src/settings.py
similarity index 97%
rename from src/tutorial/tutorial/settings.py
rename to src/settings.py
index 66cd1853ac17991ad5f8e9b95a6ffa4f1687214e..1f3f73826d2fd08e812d4fc9b4106336fca71b85 100644
--- a/src/tutorial/tutorial/settings.py
+++ b/src/settings.py
@@ -11,8 +11,8 @@
 
 BOT_NAME = 'tutorial'
 
-SPIDER_MODULES = ['tutorial.spiders']
-NEWSPIDER_MODULE = 'tutorial.spiders'
+SPIDER_MODULES = ['spiders']
+NEWSPIDER_MODULE = 'spiders'
 
 
 # Crawl responsibly by identifying yourself (and your website) on the user-agent
diff --git a/src/spiders/__init__.py b/src/spiders/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..ebd689ac51d69c5e1dbbe80083c2b20a39f8bb79
--- /dev/null
+++ b/src/spiders/__init__.py
@@ -0,0 +1,4 @@
+# This package will contain the spiders of your Scrapy project
+#
+# Please refer to the documentation for information on how to create and manage
+# your spiders.
diff --git a/src/tutorial/tutorial/spiders/books_spider.py b/src/spiders/books_spider.py
similarity index 98%
rename from src/tutorial/tutorial/spiders/books_spider.py
rename to src/spiders/books_spider.py
index 9c30a110b0281bba1cb32b66d3d70b865154d3c4..5fa64483c3ce802e0987c6b89ad3862bc21152d8 100644
--- a/src/tutorial/tutorial/spiders/books_spider.py
+++ b/src/spiders/books_spider.py
@@ -1,6 +1,7 @@
 import scrapy
 import re
-from ..items import BookItem
+from items.BookItem import BookItem
+
 
 class BooksSpider(scrapy.Spider):
     name = 'books'
diff --git a/src/tutorial/tutorial/spiders/quotes_spider.py b/src/spiders/quotes_spider.py
similarity index 100%
rename from src/tutorial/tutorial/spiders/quotes_spider.py
rename to src/spiders/quotes_spider.py
diff --git a/src/tutorial/alembic.ini b/src/tutorial/alembic.ini
deleted file mode 100644
index cc418411f2a1ca3c9b6ac6ae4cf7a284bd9bbe56..0000000000000000000000000000000000000000
--- a/src/tutorial/alembic.ini
+++ /dev/null
@@ -1,74 +0,0 @@
-# A generic, single database configuration.
-
-[alembic]
-# path to migration scripts
-script_location = alembic
-
-# template used to generate migration files
-# file_template = %%(rev)s_%%(slug)s
-
-# timezone to use when rendering the date
-# within the migration file as well as the filename.
-# string value is passed to dateutil.tz.gettz()
-# leave blank for localtime
-# timezone =
-
-# max length of characters to apply to the
-# "slug" field
-# truncate_slug_length = 40
-
-# set to 'true' to run the environment during
-# the 'revision' command, regardless of autogenerate
-# revision_environment = false
-
-# set to 'true' to allow .pyc and .pyo files without
-# a source .py file to be detected as revisions in the
-# versions/ directory
-# sourceless = false
-
-# version location specification; this defaults
-# to alembic/versions.  When using multiple version
-# directories, initial revisions must be specified with --version-path
-# version_locations = %(here)s/bar %(here)s/bat alembic/versions
-
-# the output encoding used when revision files
-# are written from script.py.mako
-# output_encoding = utf-8
-
-sqlalchemy.url = driver://user:pass@localhost/dbname
-
-
-# Logging configuration
-[loggers]
-keys = root,sqlalchemy,alembic
-
-[handlers]
-keys = console
-
-[formatters]
-keys = generic
-
-[logger_root]
-level = WARN
-handlers = console
-qualname =
-
-[logger_sqlalchemy]
-level = WARN
-handlers =
-qualname = sqlalchemy.engine
-
-[logger_alembic]
-level = INFO
-handlers =
-qualname = alembic
-
-[handler_console]
-class = StreamHandler
-args = (sys.stderr,)
-level = NOTSET
-formatter = generic
-
-[formatter_generic]
-format = %(levelname)-5.5s [%(name)s] %(message)s
-datefmt = %H:%M:%S
diff --git a/src/tutorial/alembic/README b/src/tutorial/alembic/README
deleted file mode 100644
index 22a269b43dfe2684c1b8b27b45f92ca517212168..0000000000000000000000000000000000000000
--- a/src/tutorial/alembic/README
+++ /dev/null
@@ -1 +0,0 @@
-Generic single-database configuration.alembic list_templates
\ No newline at end of file
diff --git a/src/tutorial/alembic/env.py b/src/tutorial/alembic/env.py
deleted file mode 100644
index 15cb4725951092618258f4b8e9e8cb72b8e6f26c..0000000000000000000000000000000000000000
--- a/src/tutorial/alembic/env.py
+++ /dev/null
@@ -1,75 +0,0 @@
-
-from logging.config import fileConfig
-
-from sqlalchemy import engine_from_config
-from sqlalchemy import pool
-
-from alembic import context
-
-# this is the Alembic Config object, which provides
-# access to the values within the .ini file in use.
-config = context.config
-
-# Interpret the config file for Python logging.
-# This line sets up loggers basically.
-fileConfig(config.config_file_name)
-
-# add your model's MetaData object here
-# for 'autogenerate' support
-# from myapp import mymodel
-# target_metadata = mymodel.Base.metadata
-target_metadata = None
-
-# other values from the config, defined by the needs of env.py,
-# can be acquired:
-# my_important_option = config.get_main_option("my_important_option")
-# ... etc.
-
-
-def run_migrations_offline():
-    """Run migrations in 'offline' mode.
-
-    This configures the context with just a URL
-    and not an Engine, though an Engine is acceptable
-    here as well.  By skipping the Engine creation
-    we don't even need a DBAPI to be available.
-
-    Calls to context.execute() here emit the given string to the
-    script output.
-
-    """
-    url = config.get_main_option("sqlalchemy.url")
-    context.configure(
-        url=url, target_metadata=target_metadata, literal_binds=True
-    )
-
-    with context.begin_transaction():
-        context.run_migrations()
-
-
-def run_migrations_online():
-    """Run migrations in 'online' mode.
-
-    In this scenario we need to create an Engine
-    and associate a connection with the context.
-
-    """
-    connectable = engine_from_config(
-        config.get_section(config.config_ini_section),
-        prefix="sqlalchemy.",
-        poolclass=pool.NullPool,
-    )
-
-    with connectable.connect() as connection:
-        context.configure(
-            connection=connection, target_metadata=target_metadata
-        )
-
-        with context.begin_transaction():
-            context.run_migrations()
-
-
-if context.is_offline_mode():
-    run_migrations_offline()
-else:
-    run_migrations_online()
diff --git a/src/tutorial/alembic/script.py.mako b/src/tutorial/alembic/script.py.mako
deleted file mode 100644
index 2c0156303a8df3ffdc9de87765bf801bf6bea4a5..0000000000000000000000000000000000000000
--- a/src/tutorial/alembic/script.py.mako
+++ /dev/null
@@ -1,24 +0,0 @@
-"""${message}
-
-Revision ID: ${up_revision}
-Revises: ${down_revision | comma,n}
-Create Date: ${create_date}
-
-"""
-from alembic import op
-import sqlalchemy as sa
-${imports if imports else ""}
-
-# revision identifiers, used by Alembic.
-revision = ${repr(up_revision)}
-down_revision = ${repr(down_revision)}
-branch_labels = ${repr(branch_labels)}
-depends_on = ${repr(depends_on)}
-
-
-def upgrade():
-    ${upgrades if upgrades else "pass"}
-
-
-def downgrade():
-    ${downgrades if downgrades else "pass"}