psycogreen
Advanced tools
| [tool.black] | ||
| line-length=79 | ||
| skip-string-normalization=true | ||
| exclude = ''' | ||
| /( | ||
| env | ||
| | \.git | ||
| | tools/\.black | ||
| | tools/\.flake8 | ||
| )/ | ||
| ''' |
+1
-1
@@ -1,2 +0,2 @@ | ||
| Copyright (c) 2010-2018, Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| Copyright (c) 2010-2020, Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| All rights reserved. | ||
@@ -3,0 +3,0 @@ |
+14
-6
@@ -1,9 +0,11 @@ | ||
| Metadata-Version: 1.1 | ||
| Metadata-Version: 1.2 | ||
| Name: psycogreen | ||
| Version: 1.0.1 | ||
| Version: 1.0.2 | ||
| Summary: psycopg2 integration with coroutine libraries | ||
| Home-page: https://bitbucket.org/dvarrazzo/psycogreen | ||
| Home-page: https://github.com/psycopg/psycogreen/ | ||
| Author: Daniele Varrazzo | ||
| Author-email: daniele.varrazzo@gmail.com | ||
| License: BSD | ||
| Project-URL: Funding, https://github.com/sponsors/dvarrazzo | ||
| Project-URL: Bug tracker, https://github.com/psycopg/psycogreen/issues | ||
| Description: psycogreen -- psycopg2 integration with coroutine libraries | ||
@@ -24,3 +26,3 @@ =========================================================== | ||
| .. _psycogreen: https://bitbucket.org/dvarrazzo/psycogreen | ||
| .. _psycogreen: https://github.com/psycopg/psycogreen | ||
| .. _Psycopg: http://initd.org/psycopg/ | ||
@@ -31,2 +33,8 @@ .. __: http://initd.org/psycopg/docs/advanced.html#support-to-coroutine-libraries | ||
| Installation | ||
| ------------ | ||
| ``pip install psycogreen`` | ||
| Module ``psycogreen.eventlet`` | ||
@@ -56,3 +64,3 @@ ------------------------------ | ||
| .. |tests/test_eventlet.py| replace:: ``tests/test_eventlet.py`` | ||
| .. __: https://bitbucket.org/dvarrazzo/psycogreen/src/master/tests/test_eventlet.py | ||
| .. __: https://github.com/psycopg/psycogreen/blob/master/tests/test_eventlet.py | ||
@@ -79,3 +87,3 @@ | ||
| .. |tests/test_gevent.py| replace:: ``tests/test_gevent.py`` | ||
| .. __: https://bitbucket.org/dvarrazzo/psycogreen/src/master/tests/test_gevent.py | ||
| .. __: https://github.com/psycopg/psycogreen/blob/master/tests/test_gevent.py | ||
@@ -82,0 +90,0 @@ |
@@ -1,9 +0,11 @@ | ||
| Metadata-Version: 1.1 | ||
| Metadata-Version: 1.2 | ||
| Name: psycogreen | ||
| Version: 1.0.1 | ||
| Version: 1.0.2 | ||
| Summary: psycopg2 integration with coroutine libraries | ||
| Home-page: https://bitbucket.org/dvarrazzo/psycogreen | ||
| Home-page: https://github.com/psycopg/psycogreen/ | ||
| Author: Daniele Varrazzo | ||
| Author-email: daniele.varrazzo@gmail.com | ||
| License: BSD | ||
| Project-URL: Funding, https://github.com/sponsors/dvarrazzo | ||
| Project-URL: Bug tracker, https://github.com/psycopg/psycogreen/issues | ||
| Description: psycogreen -- psycopg2 integration with coroutine libraries | ||
@@ -24,3 +26,3 @@ =========================================================== | ||
| .. _psycogreen: https://bitbucket.org/dvarrazzo/psycogreen | ||
| .. _psycogreen: https://github.com/psycopg/psycogreen | ||
| .. _Psycopg: http://initd.org/psycopg/ | ||
@@ -31,2 +33,8 @@ .. __: http://initd.org/psycopg/docs/advanced.html#support-to-coroutine-libraries | ||
| Installation | ||
| ------------ | ||
| ``pip install psycogreen`` | ||
| Module ``psycogreen.eventlet`` | ||
@@ -56,3 +64,3 @@ ------------------------------ | ||
| .. |tests/test_eventlet.py| replace:: ``tests/test_eventlet.py`` | ||
| .. __: https://bitbucket.org/dvarrazzo/psycogreen/src/master/tests/test_eventlet.py | ||
| .. __: https://github.com/psycopg/psycogreen/blob/master/tests/test_eventlet.py | ||
@@ -79,3 +87,3 @@ | ||
| .. |tests/test_gevent.py| replace:: ``tests/test_gevent.py`` | ||
| .. __: https://bitbucket.org/dvarrazzo/psycogreen/src/master/tests/test_gevent.py | ||
| .. __: https://github.com/psycopg/psycogreen/blob/master/tests/test_gevent.py | ||
@@ -82,0 +90,0 @@ |
| COPYING | ||
| MANIFEST.in | ||
| README.rst | ||
| pyproject.toml | ||
| setup.py | ||
@@ -5,0 +6,0 @@ tox.ini |
| """Integration of psycopg2 with coroutine framework | ||
| """ | ||
| # Copyright (C) 2010-2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # Copyright (C) 2010-2020 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # All rights reserved. See COPYING file for details. | ||
| __version__ = '1.0.1' | ||
| __version__ = '1.0.2' |
@@ -6,3 +6,3 @@ """A wait callback to allow psycopg2 cooperation with eventlet. | ||
| # Copyright (C) 2010-2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # Copyright (C) 2010-2020 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # All rights reserved. See COPYING file for details. | ||
@@ -9,0 +9,0 @@ |
@@ -6,3 +6,3 @@ """A wait callback to allow psycopg2 cooperation with gevent. | ||
| # Copyright (C) 2010-2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # Copyright (C) 2010-2020 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # All rights reserved. See COPYING file for details. | ||
@@ -9,0 +9,0 @@ |
+9
-3
@@ -16,3 +16,3 @@ psycogreen -- psycopg2 integration with coroutine libraries | ||
| .. _psycogreen: https://bitbucket.org/dvarrazzo/psycogreen | ||
| .. _psycogreen: https://github.com/psycopg/psycogreen | ||
| .. _Psycopg: http://initd.org/psycopg/ | ||
@@ -23,2 +23,8 @@ .. __: http://initd.org/psycopg/docs/advanced.html#support-to-coroutine-libraries | ||
| Installation | ||
| ------------ | ||
| ``pip install psycogreen`` | ||
| Module ``psycogreen.eventlet`` | ||
@@ -48,3 +54,3 @@ ------------------------------ | ||
| .. |tests/test_eventlet.py| replace:: ``tests/test_eventlet.py`` | ||
| .. __: https://bitbucket.org/dvarrazzo/psycogreen/src/master/tests/test_eventlet.py | ||
| .. __: https://github.com/psycopg/psycogreen/blob/master/tests/test_eventlet.py | ||
@@ -71,3 +77,3 @@ | ||
| .. |tests/test_gevent.py| replace:: ``tests/test_gevent.py`` | ||
| .. __: https://bitbucket.org/dvarrazzo/psycogreen/src/master/tests/test_gevent.py | ||
| .. __: https://github.com/psycopg/psycogreen/blob/master/tests/test_gevent.py | ||
@@ -74,0 +80,0 @@ |
+6
-2
@@ -6,3 +6,3 @@ #!/usr/bin/env python | ||
| # Copyright (C) 2010-2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # Copyright (C) 2010-2020 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
@@ -34,3 +34,3 @@ | ||
| author_email='daniele.varrazzo@gmail.com', | ||
| url='https://bitbucket.org/dvarrazzo/psycogreen', | ||
| url='https://github.com/psycopg/psycogreen/', | ||
| license='BSD', | ||
@@ -40,3 +40,7 @@ packages=['psycogreen'], | ||
| version=__version__, | ||
| project_urls={ | ||
| 'Funding': 'https://github.com/sponsors/dvarrazzo', | ||
| 'Bug tracker': 'https://github.com/psycopg/psycogreen/issues', | ||
| }, | ||
| **kwargs | ||
| ) |
@@ -10,3 +10,3 @@ #!/usr/bin/env python | ||
| # Copyright (C) 2010-2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # Copyright (C) 2010-2020 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # All rights reserved. See COPYING file for details. | ||
@@ -13,0 +13,0 @@ |
@@ -10,3 +10,3 @@ #!/usr/bin/env python | ||
| # Copyright (C) 2010-2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # Copyright (C) 2010-2020 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # All rights reserved. See COPYING file for details. | ||
@@ -13,0 +13,0 @@ |
| #!/usr/bin/env python | ||
| """A server to test with blocking I/O.""" | ||
| # Copyright (C) 2010-2018 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # Copyright (C) 2010-2020 Daniele Varrazzo <daniele.varrazzo@gmail.com> | ||
| # All rights reserved. See COPYING file for details. | ||
@@ -6,0 +6,0 @@ |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
23095
3.56%19
5.56%195
2.09%