I did move to step 1 -B to 1 -C today. I need to evaluate how the SQLAlchemy and hurry.query could be useful in my project. I go through some articles and seems an interesting topic.
Today I continued with this step and did some examples with SQLAlchemy, using an in-memory-only SQLite database. I am using the latest SQLAlchemy and mistakenly tried to execute older version codes. That was because I was referring to a older version tutorial. As my mentor says, this is a common problem in FOSS Following command can be used to find out the version of the SQLAlchemy.
1 comment:
Today I continued with this step and did some examples with SQLAlchemy, using an in-memory-only SQLite database. I am using the latest SQLAlchemy and mistakenly tried to execute older version codes. That was because I was referring to a older version tutorial. As my mentor says, this is a common problem in FOSS Following command can be used to find out the version of the SQLAlchemy.
$ python
>>> import sqlalchemy
>>> sqlalchemy.__version__
0.4.0
Post a Comment