Requirements
Cloud Spanner
Firstly you’ll need to enable Cloud Spanner in your Google Cloud Platform project. Please visit spanner-setup for more information.
Also you’ll need to have created Google Application Credentials, otherwise you can learn more from here
Python 3
Please ensure that you have Python 3 installed, or install it from the Python downloads page.
Django
You’ll need to have Django installed, or install it by following these instructions
Package
This software is available in the form of spanner.django
, which can be installed in any of these forms:
Source install
This step only exists because we have not yet publicly published these libraries.
git clone git@github.com:orijtech/django-spanner.git && cd django-spanner && pip3 install --user .
Zip download
This step only exists because we have not yet publicly published these libraries.
Visit spanner.django.zip whose structure will look like this
.
├── README.md
├── assets
│ └── spanner-django.png
├── runtests.py
├── setup.cfg
├── setup.py
├── spanner
│ ├── __init__.py
│ ├── dbapi
│ │ ├── __init__.py
│ │ ├── connection.py
│ │ ├── cursor.py
│ │ ├── exceptions.py
│ │ ├── parse_utils.py
│ │ ├── types.py
│ │ └── version.py
│ └── django
│ ├── __init__.py
│ ├── base.py
│ ├── client.py
│ ├── creation.py
│ ├── features.py
│ ├── introspection.py
│ ├── operations.py
│ └── schema.py
├── tests
│ ├── __init__.py
│ └── spanner
│ ├── __init__.py
│ └── dbapi
│ ├── __init__.py
│ ├── test_globals.py
│ ├── test_parse_utils.py
│ └── test_types.py
└── tox.ini
6 directories, 28 files
and after download, you’ll need to run
pip3 install --user .
Pip install
This step is UNAVAILABLE because we have not yet publicly published this package.
pip3 install django-spanner