Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJoihn Cera
Courses Plus Student 2,478 PointsThe verification regex is error
AssertionError: Regex didn't match: 'engine\s*=\s*create_engine\(\r?\n?\\'?\"?\‘?sqlite\:\/\/\/movies\.db\\'?\"?\’?\s*\,\s*\r?\n?echo\=False\s*\)' not found in "# insert your code here\nfrom sqlalchemy import create_engine\nfrom sqlalchemy.ext.declarative import declarative_base\n\nengine = create_engine('sqlite:///movies.db', echo = False)\n\nBase = declarative_base()\n\nclass Movie(Base):\n tablename = 'movies'" :
I may right but the assert return error due to has the special characters in it "’?"
# insert your code here
from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import declarative_base
engine = create_engine('sqlite:///movies.db', echo = False)
Base = declarative_base()
class Movie(Base):
__tablename__ = 'movies'
1 Answer
Steven Parker
231,236 PointsApparently, the challenge doesn't like white space where the echo
term is set. Try it this way instead:
engine = create_engine('sqlite:///movies.db', echo=False)
Joihn Cera
Courses Plus Student 2,478 PointsJoihn Cera
Courses Plus Student 2,478 PointsStill not work. I found that the website use ‘ character but when I type in the keyboard it is ' Please see ' and ‘
Joihn Cera
Courses Plus Student 2,478 PointsJoihn Cera
Courses Plus Student 2,478 PointsThank you Steven Parker . I quit the browser then restart and seem it worked. You should not use regex for this @treehouse