SQLAlchemy and sqlacodegen noob here. I'd like to just get some simple SQLAlchemy tables generated for my database. I tried using --noclasses, but it doesn't seem to recognize the option.
sqlacodegen --noclasses mysql+pymysql://root:<uhuh>@localhost:3306/mydb
sqlacodegen: error: unrecognized arguments: --noclasses
How can I get it to just gen some tables?
This is what I read in the project docs:
"Unless the --noclasses option is used, sqlacodegen tries to generate declarative model classes from each table."
Thanks!
-Peter