diff --git a/README.md b/README.md index 7fed961..6cdf782 100644 --- a/README.md +++ b/README.md @@ -632,7 +632,7 @@ import zoneinfo, dateutil.tz ### Encode ```python = D/T/DT.fromisoformat() # Object from ISO string. Raises ValueError. -
= DT.strptime(, '') # Datetime from str, according to format. +
= DT.strptime(, '') # Datetime from custom string. See Format. = D/DT.fromordinal() # D/DT from days since the Gregorian NYE 1. = DT.fromtimestamp() # Local naive DT from seconds since the Epoch. = DT.fromtimestamp(, ) # Aware datetime from seconds since the Epoch. @@ -3349,7 +3349,7 @@ c 6 7 = pd.read_csv/excel() # Also `header/index_col/dtype/usecols/…=`. = pd.read_html() # Raises ImportError if webpage has zero tables. = pd.read_parquet/feather/hdf() # Function read_hdf() accepts `key=`. - = pd.read_sql('', ) # Pass SQLite3/Alchemy connection (see #SQLite). + = pd.read_sql('
', ) # Pass SQLite3/Alchemy connection. See #SQLite. ``` ```python diff --git a/index.html b/index.html index 6fa12a2..a3ca5c8 100644 --- a/index.html +++ b/index.html @@ -56,7 +56,7 @@
- +
@@ -562,7 +562,7 @@ shuffle(<list>) '> pip3 install tzdata'.

Encode

<D/T/DT> = D/T/DT.fromisoformat(<str>)      # Object from ISO string. Raises ValueError.
-<DT>     = DT.strptime(<str>, '<format>')   # Datetime from str, according to format.
+<DT>     = DT.strptime(<str>, '<format>')   # Datetime from custom string. See Format.
 <D/DTn>  = D/DT.fromordinal(<int>)          # D/DT from days since the Gregorian NYE 1.
 <DTn>    = DT.fromtimestamp(<float>)        # Local naive DT from seconds since the Epoch.
 <DTa>    = DT.fromtimestamp(<float>, <tz>)  # Aware datetime from seconds since the Epoch.
@@ -2744,7 +2744,7 @@ c  6  7
 <DF>   = pd.read_csv/excel(<path/url/file>)    # Also `header/index_col/dtype/usecols/…=<obj>`.
 <list> = pd.read_html(<path/url/file>)         # Raises ImportError if webpage has zero tables.
 <S/DF> = pd.read_parquet/feather/hdf(<path…>)  # Function read_hdf() accepts `key=<s/df_name>`.
-<DF>   = pd.read_sql('<table/query>', <conn>)  # Pass SQLite3/Alchemy connection (see #SQLite).
+<DF>   = pd.read_sql('<table/query>', <conn>)  # Pass SQLite3/Alchemy connection. See #SQLite.
 
<DF>.to_json/csv/html/parquet/latex(<path>)    # Returns a string/bytes if path is omitted.
@@ -2944,7 +2944,7 @@ $ deactivate                # Deactivates the active