A full stack Python application framework for building consumer and business web services from the scratch
ooduor on ooduor-with-meta-description
Add Missing site_description to… (compare)
True
>>> pkg_resources.get_distribution('pyramid_tm').version
'2.2.1'
>>> from pyramid_tm import reify
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name 'reify' from 'pyramid_tm'
i don't see any changesets in pyramid_tm repo related to this functionality
transaction
pkg have some internal things for solve conflicts http://dpaste.com/2H0DWSY
old tyle was something like:
for attempt in transaction.manager.attempts():
with attempt as t:
...
also zope.sqlalchemy have defined should_retry
https://github.com/zopefoundation/zope.sqlalchemy/blob/master/src/zope/sqlalchemy/datamanager.py#L154-L164
but now example how use it :P as i understand, it will fire only if you use Attempts
or tm.run
WebSauna is featured in the Jul 8, 2019, PythonBytes podcast.
https://pythonbytes.fm/episodes/show/138/will-pyoxidizer-weld-shut-one-of-python-s-major-gaps
Hi @miohtama , I contacted @clickio with a similar question and I made this observation(s)
The benefit of Docker is a "disposable" development environment; where
disposable
means that you can quickly (re)start from known working state?
Then, reflecting on my own, very preliminary, experience setting up web sauna:
I think the challenge is that web sauna incorporates multiple components, depending on what you want to do with it (hence the use of cookie cutter in the
getting started
which is unusual.
Uncommon, but not necessarily a problem.
I wonder if the solution might be to embellish the ansible repo with some plays for getting started and maybe some plays for building images. The advantage of ansible is that you can concatenate many steps or recompose them into a different combinations
I would defer to the wisdom of the group on this.
ansible-bender
builds images from ansible plays: https://blog.tomecek.net/post/building-containers-with-buildah-and-ansible/