Browse Source

switch readme to markdown format #nolog

pull/702/head
Miguel Grinberg 4 years ago
parent
commit
82cc2cb4cc
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 46
      README.md
  2. 51
      README.rst
  3. 3
      setup.py

46
README.md

@ -0,0 +1,46 @@
python-socketio
===============
[![Build status](https://github.com/miguelgrinberg/python-socketio/workflows/build/badge.svg)](https://github.com/miguelgrinberg/python-socketio/actions) [![codecov](https://codecov.io/gh/miguelgrinberg/python-socketio/branch/main/graph/badge.svg)](https://codecov.io/gh/miguelgrinberg/python-socketio)
Python implementation of the `Socket.IO`_ realtime client and server.
Sponsors
--------
The following organizations are funding this project:
![Socket.IO](https://images.opencollective.com/socketio/050e5eb/logo/64.png)<br>[Socket.IO](https://socket.io) | [Add your company here!](https://github.com/sponsors/miguelgrinberg)|
-|-
Many individual sponsors also support this project through small ongoing contributions. Why not [join them](https://github.com/sponsors/miguelgrinberg)?
Version compatibility
---------------------
The Socket.IO protocol has been through a number of revisions, and some of these
introduced backward incompatible changes, which means that the client and the
server must use compatible versions for everything to work.
If you are using the Python client and server, the easiest way to ensure compatibility
is to use the same version of this package for the client and the server. If you are
using this package with a different client or server, then you must ensure the
versions are compatible.
The version compatibility chart below maps versions of this package to versions
of the JavaScript reference implementation and the versions of the Socket.IO and
Engine.IO protocols.
JavaScript Socket.IO version | Socket.IO protocol revision | Engine.IO protocol revision | python-socketio version
-|-|-|-
0.9.x | 1, 2 | 1, 2 | Not supported
1.x and 2.x | 3, 4 | 3 | 4.x
3.x and 4.x | 5 | 4 | 5.x
Resources
---------
- [Documentation](http://python-socketio.readthedocs.io/en/latest/)
- [PyPI](https://pypi.python.org/pypi/python-socketio)
- [Change Log](https://github.com/miguelgrinberg/python-socketio/blob/main/CHANGES.md)
- Questions? See the [questions](https://stackoverflow.com/questions/tagged/python-socketio) others have asked on Stack Overflow, or [ask](https://stackoverflow.com/questions/ask?tags=python+python-socketio) your own question.

51
README.rst

@ -1,51 +0,0 @@
python-socketio
===============
.. image:: https://github.com/miguelgrinberg/python-socketio/workflows/build/badge.svg
:target: https://github.com/miguelgrinberg/python-socketio/actions
.. image:: https://codecov.io/gh/miguelgrinberg/python-socketio/branch/master/graph/badge.svg
:target: https://codecov.io/gh/miguelgrinberg/python-socketio
Python implementation of the `Socket.IO`_ realtime client and server.
Version compatibility
---------------------
The Socket.IO protocol has been through a number of revisions, and some of these
introduced backward incompatible changes, which means that the client and the
server must use compatible versions for everything to work.
If you are using the Python client and server, the easiest way to ensure compatibility
is to use the same version of this package for the client and the server. If you are
using this package with a different client or server, then you must ensure the
versions are compatible.
The version compatibility chart below maps versions of this package to versions
of the JavaScript reference implementation and the versions of the Socket.IO and
Engine.IO protocols.
+------------------------------+-----------------------------+-----------------------------+-------------------------+
| JavaScript Socket.IO version | Socket.IO protocol revision | Engine.IO protocol revision | python-socketio version |
+==============================+=============================+=============================+=========================+
| 0.9.x | 1, 2 | 1, 2 | Not supported |
+------------------------------+-----------------------------+-----------------------------+-------------------------+
| 1.x and 2.x | 3, 4 | 3 | 4.x |
+------------------------------+-----------------------------+-----------------------------+-------------------------+
| 3.x and 4.x | 5 | 4 | 5.x |
+------------------------------+-----------------------------+-----------------------------+-------------------------+
Resources
---------
- `Documentation`_
- `PyPI`_
- `Change Log`_
- Questions? See the `questions`_ others have asked on Stack Overflow, or `ask`_ your own question.
.. _Socket.IO: https://github.com/socketio/socket.io
.. _Documentation: http://python-socketio.readthedocs.io/en/latest/
.. _PyPI: https://pypi.python.org/pypi/python-socketio
.. _Change Log: https://github.com/miguelgrinberg/python-socketio/blob/master/CHANGES.md
.. _questions: https://stackoverflow.com/questions/tagged/python-socketio
.. _ask: https://stackoverflow.com/questions/ask?tags=python+python-socketio

3
setup.py

@ -12,7 +12,7 @@ with open('socketio/__init__.py', 'r') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
f.read(), re.MULTILINE).group(1)
with open('README.rst', 'r') as f:
with open('README.md', 'r') as f:
long_description = f.read()
setup(
@ -24,6 +24,7 @@ setup(
author_email='[email protected]',
description='Socket.IO server',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['socketio'],
zip_safe=False,
include_package_data=True,

Loading…
Cancel
Save