Skip to content

Commit f8d4b1a

Browse files
Update example stores config.
1 parent 9990fb2 commit f8d4b1a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs-parts/admin/5-blob-config_lang1.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
dj.config['stores'] = {
44
'external': dict( # 'regular' external storage for this pipeline
55
protocol='s3',
6-
endpoint='https://s3.amazonaws.com',
6+
endpoint='s3.amazonaws.com:9000',
77
bucket = 'testbucket',
8-
location = '/datajoint-projects/myschema',
8+
location = 'datajoint-projects/lab1',
99
access_key='1234567',
1010
secret_key='foaf1234'),
1111
'external-raw'] = dict( # 'raw' storage for this pipeline

docs-parts/existing/1-Loading-Classes_lang1.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ You may then import the module to interact with its tables:
3838
.. :file: virtual-module-ERD.svg
3939
4040
Note that dj.Diagram can extract the diagram from a schema object or from a
41-
python module containing its schema object, lending further support to the
41+
Python module containing its schema object, lending further support to the
4242
convention of one-to-one correspondence between database schemas and Python
43-
modules in a datajoint project:
43+
modules in a DataJoint project:
4444

4545
``dj.Diagram(uni)``
4646

@@ -70,7 +70,7 @@ not have classes declared to interact with it.
7070

7171
So let's start over in this scenario.
7272

73-
You can may use the ``dj.list_schemas`` function (new in datajoint 0.12.0) to
73+
You can may use the ``dj.list_schemas`` function (new in DataJoint 0.12.0) to
7474
list the names of database schemas available to you.
7575

7676
.. code-block:: python
@@ -142,8 +142,8 @@ this namespace:
142142
Creating a virtual module
143143
~~~~~~~~~~~~~~~~~~~~~~~~~
144144
Now ``spawn_missing_classes`` creates the new classes in the local namespace.
145-
However, it is often more convenient to import a schema with its python module,
146-
equivalent to the python command
145+
However, it is often more convenient to import a schema with its Python module,
146+
equivalent to the Python command
147147

148148
.. code-block:: python
149149

0 commit comments

Comments
 (0)