mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Spelling corrections plus CI job for codespell
* Use codespell to check spelling in documentation, refs #1417 * Fixed spelling errors spotted by codespell, closes #1417 * Make codespell a docs dependency See also this TIL: https://til.simonwillison.net/python/codespell
This commit is contained in:
parent
54b6e96ee8
commit
2208c3c68e
12 changed files with 42 additions and 16 deletions
|
|
@ -431,13 +431,13 @@ It offers the following methods:
|
|||
``await datasette.client.get(path, **kwargs)`` - returns HTTPX Response
|
||||
Execute an internal GET request against that path.
|
||||
|
||||
``await datasette.client.post(path, **kwargs)`` - returns HTTPX Respons
|
||||
``await datasette.client.post(path, **kwargs)`` - returns HTTPX Response
|
||||
Execute an internal POST request. Use ``data={"name": "value"}`` to pass form parameters.
|
||||
|
||||
``await datasette.client.options(path, **kwargs)`` - returns HTTPX Response
|
||||
Execute an internal OPTIONS request.
|
||||
|
||||
``await datasette.client.head(path, **kwargs)`` - returns HTTPX Respons
|
||||
``await datasette.client.head(path, **kwargs)`` - returns HTTPX Response
|
||||
Execute an internal HEAD request.
|
||||
|
||||
``await datasette.client.put(path, **kwargs)`` - returns HTTPX Response
|
||||
|
|
@ -714,7 +714,7 @@ The ``Database`` class also provides properties and methods for introspecting th
|
|||
List of names of tables in the database.
|
||||
|
||||
``await db.view_names()`` - list of strings
|
||||
List of names of views in tha database.
|
||||
List of names of views in the database.
|
||||
|
||||
``await db.table_columns(table)`` - list of strings
|
||||
Names of columns in a specific table.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue