Skip to content

Commit c6a67f4

Browse files
adamchainzdanielhochman
authored andcommitted
1 parent 4c2fb74 commit c6a67f4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ PynamoDB presents you with a simple, elegant API.
1919

2020
Useful links:
2121

22-
* See the full documentation at http://pynamodb.readthedocs.org/
22+
* See the full documentation at https://pynamodb.readthedocs.io/
2323
* Ask questions at `Google group <https://groups.google.com/forum/#!forum/pynamodb>`_
24-
* See release notes at http://pynamodb.readthedocs.org/en/latest/release_notes.html
24+
* See release notes at https://pynamodb.readthedocs.io/en/latest/release_notes.html
2525

2626
Installation
2727
============

docs/tutorial.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Why PynamoDB?
1717
^^^^^^^^^^^^^
1818

1919
It all started when I needed to use Global Secondary Indexes, a new and powerful feature of
20-
DynamoDB. I quickly realized that my go to library, `dynamodb-mapper <http://dynamodb-mapper.readthedocs.org/en/latest/>`__, didn't support them.
20+
DynamoDB. I quickly realized that my go to library, `dynamodb-mapper <https://dynamodb-mapper.readthedocs.io/en/latest/>`__, didn't support them.
2121
In fact, it won't be supporting them anytime soon because dynamodb-mapper relies on another
2222
library, `boto.dynamodb <http://docs.pythonboto.org/en/latest/migrations/dynamodb_v1_to_v2.html>`__,
2323
which itself won't support them. In fact, boto doesn't support
@@ -31,7 +31,7 @@ Installation
3131
$ pip install pynamodb
3232

3333

34-
Don't have pip? `Here are instructions for installing pip. <http://pip.readthedocs.org/en/latest/installing.html>`_.
34+
Don't have pip? `Here are instructions for installing pip. <https://pip.readthedocs.io/en/latest/installing.html>`_.
3535

3636
Getting Started
3737
^^^^^^^^^^^^^^^
@@ -40,7 +40,7 @@ PynamoDB provides three API levels, a ``Connection``, a ``TableConnection``, and
4040
Each API is built on top of the previous, and adds higher level features. Each API level is
4141
fully featured, and can be used directly. Before you begin, you should already have an
4242
`Amazon Web Services account <http://aws.amazon.com/>`__, and have your
43-
`AWS credentials configured your boto <http://boto.readthedocs.org/en/latest/boto_config_tut.html>`__.
43+
`AWS credentials configured your boto <https://boto.readthedocs.io/en/latest/boto_config_tut.html>`__.
4444

4545
Defining a Model
4646
----------------

examples/url_shortener/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A very short URL shortener
55
This is a very small implementation of a `URL shortener <http://en.wikipedia.org/wiki/URL_shortening>`_ powered by Flask and PynamoDB.
66
This example works with both Python 2 and Python 3.
77

8-
Try it for yourself in three easy steps, assuming you have `access to AWS <http://pynamodb.readthedocs.org/en/latest/awsaccess.html>`_.
8+
Try it for yourself in three easy steps, assuming you have `access to AWS <https://pynamodb.readthedocs.io/en/latest/awsaccess.html>`_.
99

1010
Install Requirements
1111
====================

pynamodb/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,7 @@ def _get_connection(cls):
11601160
if not hasattr(cls, "Meta") or cls.Meta.table_name is None:
11611161
raise AttributeError(
11621162
"""As of v1.0 PynamoDB Models require a `Meta` class.
1163-
See http://pynamodb.readthedocs.org/en/latest/release_notes.html"""
1163+
See https://pynamodb.readthedocs.io/en/latest/release_notes.html"""
11641164
)
11651165
if cls._connection is None:
11661166
cls._connection = TableConnection(cls.Meta.table_name, region=cls.Meta.region, host=cls.Meta.host,

0 commit comments

Comments
 (0)