<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/doc/build/tutorial, branch workflow_test_cython</title>
<subtitle>github.com: zzzeek/sqlalchemy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/'/>
<entry>
<title>initial 2.0 setup</title>
<updated>2021-10-30T18:21:53+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2019-04-11T16:43:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f05d3ddba4c1edae00dd863af60e8fbb13eb7091'/>
<id>f05d3ddba4c1edae00dd863af60e8fbb13eb7091</id>
<content type='text'>
Adapted from 55e64f857daeb6057b85ff67297a774b when we
previously started a 2.0 branch.

Change-Id: Ib5af75df94b23104eebe0e918adcf979d798ea3b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adapted from 55e64f857daeb6057b85ff67297a774b when we
previously started a 2.0 branch.

Change-Id: Ib5af75df94b23104eebe0e918adcf979d798ea3b
</pre>
</div>
</content>
</entry>
<entry>
<title>add sections for ORM use with UNION</title>
<updated>2021-10-26T02:22:27+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2021-10-26T02:21:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=7cf3e79991b3d00d53bfb98cfdab267b67a5cdda'/>
<id>7cf3e79991b3d00d53bfb98cfdab267b67a5cdda</id>
<content type='text'>
this is a fairly non-obvious part of the new ORM
querying style and needs its own sections

Change-Id: Iacb176020d580066c1e0b7f2b40bfbbcb3587d76
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this is a fairly non-obvious part of the new ORM
querying style and needs its own sections

Change-Id: Iacb176020d580066c1e0b7f2b40bfbbcb3587d76
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove misplaced apostrophe in tutorial/index.rst (#7043)</title>
<updated>2021-09-19T16:30:24+00:00</updated>
<author>
<name>JMcB17</name>
<email>joel.mcbride1@live.com</email>
</author>
<published>2021-09-19T16:30:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=222ea42ec56f90315a30b7eff94a2f56ca10e02d'/>
<id>222ea42ec56f90315a30b7eff94a2f56ca10e02d</id>
<content type='text'>
Citation: http://www.sussex.ac.uk/informatics/punctuation/apostrophe/possessives</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Citation: http://www.sussex.ac.uk/informatics/punctuation/apostrophe/possessives</pre>
</div>
</content>
</entry>
<entry>
<title>fix: typos in doc/build/tutorial (#7005)</title>
<updated>2021-09-08T19:14:56+00:00</updated>
<author>
<name>Kevin Kirsche</name>
<email>kevin.kirsche@one.verizon.com</email>
</author>
<published>2021-09-08T19:14:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=a4abb4e396e3d3463629edca360b815c6d0428f7'/>
<id>a4abb4e396e3d3463629edca360b815c6d0428f7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>standardizing docs #6821</title>
<updated>2021-08-23T20:25:21+00:00</updated>
<author>
<name>jonathan vanasco</name>
<email>jonathan@2xlp.com</email>
</author>
<published>2021-08-23T20:25:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=369edbbd674c2dcdc121072a20b3f9d259f9ee91'/>
<id>369edbbd674c2dcdc121072a20b3f9d259f9ee91</id>
<content type='text'>
(redo of 2999/I5609025feee8cfdecc09b55bfbf1bd13fa2e6602)

This PR is designed to bring more clarity within the docs by renaming object
instances that may be consfusingly similar to class, method, and attribute names.

For example, instances of the class `MetaData` are available on some  objects as
`.metadata` property, and had appeared within the docs as both `meta` and
`metadata` which has confused some users in the past. By this PR, the docs now
utilize the following naming convention:

* MetaData - SQLAlchemy class
* .metadata - SQLAlchemy API attributes
* metadata_obj - developer instantiated metadata objects or references

Detailed Changes:

* standardized `meta` and `metadata` instances to `metadata_obj`. note: the docs were evenly split between 'meta' and 'metadata'.
* standardized 'cursor' to 'cursor_obj' to avoid confusion with the method.
* standardized a 'scalar_subquery = ' to 'scalar_subq' to avoid confusion with the method.
* standardized a 'cte = ' to 'cte_obj' to avoid confusion with the method

Change-Id: I79c98aee16c5fc6649289b2dd7d6dfc368222fb4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(redo of 2999/I5609025feee8cfdecc09b55bfbf1bd13fa2e6602)

This PR is designed to bring more clarity within the docs by renaming object
instances that may be consfusingly similar to class, method, and attribute names.

For example, instances of the class `MetaData` are available on some  objects as
`.metadata` property, and had appeared within the docs as both `meta` and
`metadata` which has confused some users in the past. By this PR, the docs now
utilize the following naming convention:

* MetaData - SQLAlchemy class
* .metadata - SQLAlchemy API attributes
* metadata_obj - developer instantiated metadata objects or references

Detailed Changes:

* standardized `meta` and `metadata` instances to `metadata_obj`. note: the docs were evenly split between 'meta' and 'metadata'.
* standardized 'cursor' to 'cursor_obj' to avoid confusion with the method.
* standardized a 'scalar_subquery = ' to 'scalar_subq' to avoid confusion with the method.
* standardized a 'cte = ' to 'cte_obj' to avoid confusion with the method

Change-Id: I79c98aee16c5fc6649289b2dd7d6dfc368222fb4
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace all http:// links to https://</title>
<updated>2021-07-04T18:54:33+00:00</updated>
<author>
<name>Federico Caselli</name>
<email>cfederico87@gmail.com</email>
</author>
<published>2021-07-04T17:29:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=fb81f9c8d914f9911925dd3f4e77d7fc374b267c'/>
<id>fb81f9c8d914f9911925dd3f4e77d7fc374b267c</id>
<content type='text'>
Also replace http://pypi.python.org/pypi with https://pypi.org/project

Change-Id: I84b5005c39969a82140706472989f2a30b0c7685
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also replace http://pypi.python.org/pypi with https://pypi.org/project

Change-Id: I84b5005c39969a82140706472989f2a30b0c7685
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos in "Working with Related Objects" docs (#6651)</title>
<updated>2021-06-17T18:51:38+00:00</updated>
<author>
<name>Samuel Cattini-Schultz</name>
<email>syriiins@gmail.com</email>
</author>
<published>2021-06-17T18:51:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f0ad41eb6f4b67027c220ae103d83ec9f66d5258'/>
<id>f0ad41eb6f4b67027c220ae103d83ec9f66d5258</id>
<content type='text'>
* Fix typo in "Working with Related Objects" docs

* Fix typo in "Working with Related Objects" docs</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix typo in "Working with Related Objects" docs

* Fix typo in "Working with Related Objects" docs</pre>
</div>
</content>
</entry>
<entry>
<title>✏️ Fix minor typos in "Selecting Rows with Core or ORM" (#6381)</title>
<updated>2021-04-28T18:42:12+00:00</updated>
<author>
<name>Sebastián Ramírez</name>
<email>tiangolo@gmail.com</email>
</author>
<published>2021-04-28T18:42:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=5b12393e81f6b8953e9ebd46801e6943007b7a56'/>
<id>5b12393e81f6b8953e9ebd46801e6943007b7a56</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>✏️ Fix typos in "Data Manipulation with the ORM" (#6389)</title>
<updated>2021-04-28T18:42:07+00:00</updated>
<author>
<name>Sebastián Ramírez</name>
<email>tiangolo@gmail.com</email>
</author>
<published>2021-04-28T18:42:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=d69407abdb6e89183b69696ca9f873e268ddb3af'/>
<id>d69407abdb6e89183b69696ca9f873e268ddb3af</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>✏️ Fix typos in "Working with Related Objects" (#6393)</title>
<updated>2021-04-28T18:41:54+00:00</updated>
<author>
<name>Sebastián Ramírez</name>
<email>tiangolo@gmail.com</email>
</author>
<published>2021-04-28T18:41:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=59afa4f6f418b2710ed05bdbc086d7efc7118c98'/>
<id>59afa4f6f418b2710ed05bdbc086d7efc7118c98</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
