Headings from h1 through h6 are constructed with a # for each level:
# h1 Heading
## h2 Heading
### h3 Heading| # -*- coding: utf-8 -*- | |
| import click | |
| import os | |
| import pandas as pd | |
| def file_split(file): | |
| s = file.split('.') | |
| name = '.'.join(s[:-1]) # get directory name |
| /* | |
| Overview | |
| -------- | |
| To run a query using anorm you need to do three things: | |
| 1. Connect to the database (with or without a transaction) | |
| 2. Create an instance of `anorm.SqlQuery` using the `SQL` string interpolator | |
| 3. Call one of the methods on `SqlQuery` to actually run the query |