-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Datasets quick fixes + SQLAlchemy addition + CFF updates #339
Conversation
63c00ed
to
c830fa6
Compare
|
||
- [SQLAlchemy](https://www.sqlalchemy.org/) | ||
- In Python, interfacing to SQL databases like SQLite, MySQL or PostgreSQL is often done using [SQLAlchemy](https://www.sqlalchemy.org/), which is an Object Relational Mapper (ORM) that allows you to map tables to Python classes. Note that you still need to use a lot of manual SQL outside of Python to manage the database. However, SQLAlchemy allows you to use the data in a Pythonic way once you have the database layout figured out. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was thinking maybe piccolo deserves a mention here, considering it's much simpler, and probably better fit for smaller projects.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, by all means, add it. I am not at all an expert on databases, this is just a thing I happen to have used once.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or perhaps we can do that in another PR and I'll just make an issue about it first to remember (maybe others have additional ideas that they can discuss there).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done #346. Thanks for the review!
Changes in this PR
Fixes:
Adds:
Checklist
python3 -m http.server 4000
and confirmed they work correctly.CITATION.cff
file.