This repository was archived by the owner on Apr 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
feature request : allow to provide a client_manager #10 #29
Open
kumaF
wants to merge
33
commits into
pyropy:master
Choose a base branch
from
kumaF:add-message-queue
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
bdba710
Merge pull request #1 from pyropy/add-socketio-fastapi-integration
pyropy 3d3a1a0
Update example and README.md
pyropy b3ebfcc
Delete dummy tests 😅
pyropy eb0b6b9
Update test dependencies 🧐
pyropy d02fa00
Add dummy test
pyropy 12a2232
Fix deploy workflow
pyropy bd66289
Up version to 0.0.3a
pyropy 92e7368
Merge pull request #6 from pyropy/0.0.3a
pyropy 608b329
Up version to 0.0.3
pyropy 15c1884
Use cors_allowed_origins in AsyncServer
MatthewScholefield 68ee072
Merge pull request #7 from MatthewScholefield/patch-1
pyropy ee83042
Add CONTRIBUTORS.md and update README.md
pyropy 8726c7b
Merge pull request #8 from pyropy/add-contributors
pyropy e6ec802
Upgrade to release v0.0.4
pyropy e851a10
Add missing dependencies to setup.py
pyropy c0b197e
Update package dependnecies
pyropy 7665715
Merge pull request #11 from pyropy/#9-add-missing-dependencies
pyropy 05df44c
Update package version to 0.0.5
pyropy 8e11b84
Update package version to 0.0.6
pyropy c67bd22
Remove unused dependencies
khiemdoan 0635222
Merge pull request #18 from khiemdoan/dependencies
pyropy 45cbddb
Add enter and leave room functions
pyropy 8ab562e
Update contributors
pyropy e2016ce
Bump package version to 0.0.7
pyropy 688846c
Merge pull request #20 from pyropy/add-join-room
pyropy 079a951
Add async transport mode
pyropy 9dc0b59
Bump package version
pyropy 17d4d17
Merge pull request #21 from pyropy/add-async-transport-mode
pyropy 9251fe9
Fixed #24 invalid enter_room and leave_room
Roxe322 367242c
Updated imports to PEP8
Roxe322 4e36d5f
Merge pull request #25 from Roxe322/master
pyropy 5b02d60
Update setup.py
pyropy fc38dd1
add message queue suppoert for distributed application usage
kumaF File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Contributors | ||
|
||
* [Matthew D. Scholefield](https://github.com/MatthewScholefield) - Added cors allowed origins for AsyncServer [#7](https://github.com/pyropy/fastapi-socketio/pull/7) | ||
* [Aaron Tolman](https://github.com/tolmanam) - Reported issue with broken pip download [#5](https://github.com/pyropy/fastapi-socketio/issues/5) | ||
* [Khiem Doan](https://github.com/khiemdoan) - Helped with cleaning up old unused dependencies[#5](https://github.com/pyropy/fastapi-socketio/issues/15) | ||
* [Artem Kolomatskiy](https://github.com/Roxe322) - Fixed invalid usage of enter_room and leave_room[#24](https://github.com/pyropy/fastapi-socketio/issues/24) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
from .socket_manager import SocketManager | ||
|
||
def example_function(): | ||
return 1 + 1 | ||
from .socket_manager import SocketManager |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
from fastapi_socketio import example_function | ||
|
||
|
||
def test_example_function(): | ||
assert example_function() == 2 | ||
def test_dummy(): | ||
assert True |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it a version downgrade?