Skip to content

Commit d1f95bd

Browse files
committed
✏️ Fix links, move pyre to pystra
1 parent c08b421 commit d1f95bd

34 files changed

+161
-166
lines changed

docs/clean-prep/deduplicate.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@
10931093
"cell_type": "markdown",
10941094
"metadata": {},
10951095
"source": [
1096-
"[prepare_training](https://docs.dedupe.io/en/latest/API-documentation.html#dedupe.Dedupe.prepare_training) initialises active learning with our data and, optionally, with existing training data.\n",
1096+
"`prepare_training` initialises active learning with our data and, optionally, with existing training data.\n",
10971097
"\n",
10981098
"`T` mirrors the DataFrame across its diagonal by writing rows as columns and vice versa. For this, [pandas.DataFrame.transpose](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.transpose.html) is used."
10991099
]
@@ -1104,7 +1104,7 @@
11041104
"source": [
11051105
"## 5. Active learning\n",
11061106
"\n",
1107-
"Use [dedupe.console_label](https://docs.dedupe.io/en/latest/API-documentation.html#dedupe.console_label) to train your dedupe instance. When Dedupe finds a record pair, you will be asked to label it as a duplicate. You can use the `y`, `n` and `u` keys to label duplicates. Press `f` when you are finished."
1107+
"Use `dedupe.console_label` to train your dedupe instance. When Dedupe finds a record pair, you will be asked to label it as a duplicate. You can use the `y`, `n` and `u` keys to label duplicates. Press `f` when you are finished."
11081108
]
11091109
},
11101110
{
@@ -1300,11 +1300,11 @@
13001300
"source": [
13011301
"The last training dataset compared make it clear that we did not delete this duplicate with our `drop_duplicates` example above - `marquesseastie` and `marquessebastien` were recognised as different.\n",
13021302
"\n",
1303-
"[Dedupe.train](https://docs.dedupe.io/en/latest/API-documentation.html#dedupe.Dedupe.train) adds the record pairs you marked to the training data and updates the matching model.\n",
1303+
"`Dedupe.train` adds the record pairs you marked to the training data and updates the matching model.\n",
13041304
"\n",
13051305
"With `index_predicates=True`, deduplication also takes into account predicates based on the indexing of the data.\n",
13061306
"\n",
1307-
"When you are done, save your training data with [Dedupe.write_settings](https://docs.dedupe.io/en/latest/API-documentation.html#dedupe.Dedupe.write_settings)."
1307+
"When you are done, save your training data with `Dedupe.write_settings`."
13081308
]
13091309
},
13101310
{
@@ -1328,7 +1328,7 @@
13281328
"cell_type": "markdown",
13291329
"metadata": {},
13301330
"source": [
1331-
"With [dedupe.Dedupe.partition](https://docs.dedupe.io/en/latest/API-documentation.html#dedupe.Dedupe.partition), records that all refer to the same entity are identified and returned as tuples that are a sequence of record IDs and confidence values. For more details on the confidence value, see [dedupe.Dedupe.cluster](https://docs.dedupe.io/en/latest/API-documentation.html#dedupe.Dedupe.cluster)."
1331+
"With `dedupe.Dedupe.partition`, records that all refer to the same entity are identified and returned as tuples that are a sequence of record IDs and confidence values. For more details on the confidence value, see `dedupe.Dedupe.cluster`."
13321332
]
13331333
},
13341334
{

docs/data-processing/apis/fastapi/extensions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ ORMs
147147
.. image:: https://raster.shields.io/github/license/piccolo-orm/piccolo_admin
148148
:alt: License
149149

150-
`ormar <https://github.com/collerek/ormar/>`_
150+
`ormar <https://collerek.github.io/ormar/latest/fastapi/>`_
151151
Asynchronous mini-ORM, with which you only need to maintain one set of
152152
models and migrate them with :doc:`/data-processing/postgresql/alembic` if
153153
necessary (→ `example <https://collerek.github.io/ormar/fastapi/>`__); it is

docs/data-processing/apis/fastapi/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Starlette can use the optional dependencies
5252
if you want to use ``FileResponse`` or ``StaticFiles``.
5353
`jinja2 <https://jinja.palletsprojects.com/>`_
5454
if you want to use the default template configuration.
55-
`python-multipart <https://andrew-d.github.io/python-multipart/>`_
55+
`python-multipart <https://kludex.github.io/python-multipart/>`_
5656
if you want to support form parsing, with ``request.form()``.
5757
`itsdangerous <https://itsdangerous.palletsprojects.com/>`_
5858
required for ``SessionMiddleware`` support.

docs/data-processing/geodata.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Geodata
2727
`Arcpy <https://pro.arcgis.com/de/pro-app/arcpy/get-started/what-is-arcpy-.htm>`_
2828
is used by Esri ArcGIS to perform geographic data analysis, data conversion,
2929
data management, and map automation.
30-
`RSGISLib <https://www.rsgislib.org/>`_
30+
`RSGISLib <http://rsgislib.org/>`_
3131
or *The Remote Sensing and GIS Software Library* is a set of remote sensing
3232
tools for raster processing and analysis.
3333
`pgeocode <https://pypi.org/project/pgeocode/>`_

docs/data-processing/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ three tools in more detail that make data accessible:
2727
`Pattern <https://github.com/clips/pattern>`_
2828
Python module for data mining, natural language processing, ML and
2929
network analysis.
30-
`Web Scraping Reference <https://blog.hartleybrody.com/web-scraping-cheat-sheet/#javascript-heavy-websites>`_
30+
`Web Scraping Reference <https://blog.hartleybrody.com/web-scraping-cheat-sheet/>`_
3131
Overview of web scraping with Python.
3232

3333

docs/data-processing/nosql/document-oriented-db.rst

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ OrientDB and ArangoDB.
3434
| **Data model** | Flexible scheme with | Flexible scheme | Essentially | Multi-Model | Multi-model: documents, graphs |
3535
| | denormalised model | | :term:`Key/Value pair` | | and :term:`Key/value pair` |
3636
+------------------------+--------------------------------+--------------------------------+--------------------------------+--------------------------------+--------------------------------+
37-
| **Query langauge** | jQuery, :term:`MapReduce` | REST, :term:`MapReduce` | Key filter, :term:`MapReduce`, | `Extended SQL`_, `Gremlin`_ |`ArangoDB Query Language (AQL)`_|
37+
| **Query langauge** | jQuery, :term:`MapReduce` | REST, :term:`MapReduce` | Key filter, :term:`MapReduce`, | `Gremlin`_ |`ArangoDB Query Language (AQL)`_|
3838
| | | | link walking, no ad-hoc | | |
3939
| | | | queries possible | | |
4040
+------------------------+--------------------------------+--------------------------------+--------------------------------+--------------------------------+--------------------------------+
@@ -55,7 +55,7 @@ OrientDB and ArangoDB.
5555
.. _`MongoDB`: https://www.mongodb.com/
5656
.. _`CouchDB`: https://couchdb.apache.org/
5757
.. _`Riak`: https://riak.com/
58-
.. _`OrientDB`: https://orientdb.org/
58+
.. _`OrientDB`: https://orientdb.dev
5959
.. _`ArangoDB`: https://www.arangodb.com/
6060
.. _`mongodb/mongo`: https://github.com/mongodb/mongo
6161
.. _`apache/couchdb`: https://github.com/apache/couchdb
@@ -65,12 +65,11 @@ OrientDB and ArangoDB.
6565
.. _`docs.mongodb.com`: https://docs.mongodb.com/
6666
.. _`docs.couchdb.org`: https://docs.couchdb.org/
6767
.. _`docs.riak.com`: https://docs.riak.com/
68-
.. _`www.orientdb.com/docs`: http://www.orientdb.com/docs
68+
.. _`orientdb.dev/docs`: https://orientdb.dev/docs/3.2.x/index.html
6969
.. _`arangodb.com/documentation/`: https://arangodb.com/documentation/
70-
.. _`Time Series`: https://orientdb.org/docs/2.2.x/Time-series-use-case.html
71-
.. _`Key Value`: https://orientdb.org/docs/2.2.x/Key-Value-use-case.html
72-
.. _`Chat`: https://orientdb.org/docs/2.2.x/Chat-use-case.html
73-
.. _`Extended SQL`: https://orientdb.org/docs/2.2.x/SQL.html
70+
.. _`Time Series`: https://orientdb.dev/docs/3.2.x/gettingstarted/Time-series-use-case.html
71+
.. _`Key Value`: https://orientdb.dev/docs/3.2.x/gettingstarted/Key-Value-use-case.html
72+
.. _`Chat`: https://orientdb.dev/docs/3.2.x/gettingstarted/Chat-use-case.html
7473
.. _`Gremlin`: https://github.com/tinkerpop/gremlin/wiki
7574
.. _`ArangoDB Query Language (AQL)`: https://www.arangodb.com/docs/stable/aql/
7675
.. _`simple geospatial data`: https://docs.mongodb.com/manual/core/geospatial-indexes/

0 commit comments

Comments
 (0)