Skip to content

Commit e2b49ba

Browse files
scotthavard92jorisvandenbossche
authored andcommitted
DOC:Cleaned up the read_sql_table docstring (#17946)
1 parent 058da72 commit e2b49ba

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pandas/io/sql.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -206,28 +206,28 @@ def read_sql_table(table_name, con, schema=None, index_col=None,
206206
Parameters
207207
----------
208208
table_name : string
209-
Name of SQL table in database
209+
Name of SQL table in database.
210210
con : SQLAlchemy connectable (or database string URI)
211-
Sqlite DBAPI connection mode not supported
211+
SQLite DBAPI connection mode not supported.
212212
schema : string, default None
213213
Name of SQL schema in database to query (if database flavor
214214
supports this). If None, use default schema (default).
215215
index_col : string or list of strings, optional, default: None
216-
Column(s) to set as index(MultiIndex)
216+
Column(s) to set as index(MultiIndex).
217217
coerce_float : boolean, default True
218-
Attempt to convert values of non-string, non-numeric objects (like
218+
Attempts to convert values of non-string, non-numeric objects (like
219219
decimal.Decimal) to floating point. Can result in loss of Precision.
220220
parse_dates : list or dict, default: None
221-
- List of column names to parse as dates
221+
- List of column names to parse as dates.
222222
- Dict of ``{column_name: format string}`` where format string is
223223
strftime compatible in case of parsing string times or is one of
224-
(D, s, ns, ms, us) in case of parsing integer timestamps
224+
(D, s, ns, ms, us) in case of parsing integer timestamps.
225225
- Dict of ``{column_name: arg dict}``, where the arg dict corresponds
226226
to the keyword arguments of :func:`pandas.to_datetime`
227227
Especially useful with databases without native Datetime support,
228-
such as SQLite
228+
such as SQLite.
229229
columns : list, default: None
230-
List of column names to select from sql table
230+
List of column names to select from SQL table
231231
chunksize : int, default None
232232
If specified, return an iterator where `chunksize` is the number of
233233
rows to include in each chunk.

0 commit comments

Comments
 (0)