summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2021-07-04 19:29:19 +0200
committerFederico Caselli <cfederico87@gmail.com>2021-07-04 20:54:33 +0200
commitfb81f9c8d914f9911925dd3f4e77d7fc374b267c (patch)
treebc41febba7eb8c1fab88909a0a13ee04d4cf505a /examples
parentb920869ef54d05e73e2a980b73647d6050ffeb9d (diff)
downloadsqlalchemy-fb81f9c8d914f9911925dd3f4e77d7fc374b267c.tar.gz
Replace all http:// links to https://
Also replace http://pypi.python.org/pypi with https://pypi.org/project Change-Id: I84b5005c39969a82140706472989f2a30b0c7685
Diffstat (limited to 'examples')
-rw-r--r--examples/generic_associations/__init__.py2
-rw-r--r--examples/inheritance/single.py2
-rw-r--r--examples/nested_sets/nested_sets.py2
-rw-r--r--examples/postgis/__init__.py2
-rw-r--r--examples/sharding/__init__.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/examples/generic_associations/__init__.py b/examples/generic_associations/__init__.py
index dd6f5321b..ba648060c 100644
--- a/examples/generic_associations/__init__.py
+++ b/examples/generic_associations/__init__.py
@@ -11,7 +11,7 @@ which contains ``Address`` objects.
The :viewsource:`.discriminator_on_association` and :viewsource:`.generic_fk` scripts
are modernized versions of recipes presented in the 2007 blog post
-`Polymorphic Associations with SQLAlchemy <http://techspot.zzzeek.org/2007/05/29/polymorphic-associations-with-sqlalchemy/>`_.
+`Polymorphic Associations with SQLAlchemy <https://techspot.zzzeek.org/2007/05/29/polymorphic-associations-with-sqlalchemy/>`_.
.. autosource::
diff --git a/examples/inheritance/single.py b/examples/inheritance/single.py
index 0d5871cb1..47cfd64eb 100644
--- a/examples/inheritance/single.py
+++ b/examples/inheritance/single.py
@@ -54,7 +54,7 @@ class Engineer(Person):
primary_language = Column(String(30))
# illustrate a single-inh "conflicting" column declaration;
- # see http://docs.sqlalchemy.org/en/latest/orm/extensions/
+ # see https://docs.sqlalchemy.org/en/latest/orm/extensions/
# declarative/inheritance.html#resolving-column-conflicts
@declared_attr
def status(cls):
diff --git a/examples/nested_sets/nested_sets.py b/examples/nested_sets/nested_sets.py
index ca3e91c9a..0450551f3 100644
--- a/examples/nested_sets/nested_sets.py
+++ b/examples/nested_sets/nested_sets.py
@@ -1,6 +1,6 @@
"""Celko's "Nested Sets" Tree Structure.
-http://www.intelligententerprise.com/001020/celko.jhtml
+https://www.intelligententerprise.com/001020/celko.jhtml
"""
diff --git a/examples/postgis/__init__.py b/examples/postgis/__init__.py
index dcdbfcf57..63eeb30ec 100644
--- a/examples/postgis/__init__.py
+++ b/examples/postgis/__init__.py
@@ -4,7 +4,7 @@ embed PostGIS functionality.
This example was originally developed in the hopes that it would be
extrapolated into a comprehensive PostGIS integration layer. We are
pleased to announce that this has come to fruition as `GeoAlchemy
-<http://www.geoalchemy.org/>`_.
+<https://geoalchemy-2.readthedocs.io>`_.
The example illustrates:
diff --git a/examples/sharding/__init__.py b/examples/sharding/__init__.py
index 90cf6cc6c..36f2fa412 100644
--- a/examples/sharding/__init__.py
+++ b/examples/sharding/__init__.py
@@ -32,7 +32,7 @@ to the issue of organizing instances among multiple databases. For a
more plain-spoken alternative, the "distinct entity" approach
is a simple method of assigning objects to different tables (and potentially
database nodes) in an explicit way - described on the wiki at
-`EntityName <http://www.sqlalchemy.org/trac/wiki/UsageRecipes/EntityName>`_.
+`EntityName <https://www.sqlalchemy.org/trac/wiki/UsageRecipes/EntityName>`_.
.. autosource::