Skip to content
This repository has been archived by the owner on Jun 2, 2020. It is now read-only.

Snaji/create persipubsub #1

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 30 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
f6a4823
Added why not section in README
slimeth Dec 12, 2018
34e06fd
basic project setup
slimeth Jan 3, 2019
f4813fe
added interface
slimeth Jan 3, 2019
5020aec
minor change for method consistency
slimeth Jan 3, 2019
4486acd
first working version
slimeth Jan 24, 2019
96e249c
minor fixes for tox
slimeth Jan 24, 2019
e6b1867
modified README
slimeth Jan 24, 2019
07a1744
improved readme
slimeth Jan 25, 2019
e449095
reformatting typing imports
slimeth Jan 25, 2019
43b7e8f
updated dependencies
slimeth Jan 25, 2019
7f7e957
removed todos
slimeth Jan 25, 2019
7f5a00f
privatize some methods
slimeth Jan 25, 2019
32b6faf
privatize classes
slimeth Jan 25, 2019
fc9b7dc
extended README
slimeth Jan 25, 2019
3d50ab3
remove private queues from docs
slimeth Jan 30, 2019
70c3ee1
move common test methods
slimeth Jan 30, 2019
6fe702e
fix mdB_BAD_RSLOT error
slimeth Jan 30, 2019
b5028c3
undo import tests.common
slimeth Jan 30, 2019
a30c91b
add isort config file
slimeth Jan 30, 2019
62ddb55
adjust README (review)
slimeth Jan 31, 2019
94c9d36
removed config file
slimeth Feb 5, 2019
2a81ad0
code config free version
slimeth Feb 5, 2019
271cead
updated Readme
slimeth Feb 5, 2019
e41f3cd
docstring fix
slimeth Feb 5, 2019
7c66411
added mypy --strict flag and fixed errors
slimeth Feb 11, 2019
9119288
modified setup.py
slimeth Feb 11, 2019
ee7d2b9
first thread-safe and process-safe version
slimeth Feb 12, 2019
92e2b0a
adjust timeout time
slimeth Feb 12, 2019
56ba77e
added concurrent reading test
slimeth Feb 12, 2019
7b90576
Fixed review complains
slimeth Feb 12, 2019
2ec61f5
2nd review change
slimeth Feb 18, 2019
4edf2e5
move python module to py folder
slimeth Feb 19, 2019
1e01e2a
added cpp to persipubsub
slimeth Feb 19, 2019
87ae7a1
get all queue data in one go and more changes
slimeth Feb 20, 2019
59e88ea
cpp in work commit
slimeth Feb 20, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Sphinx documentation
docs/build/

# pyenv
.python-version

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
venv3/
venv-doc/

# mypy
.mypy_cache/

# IDE
.idea

# Archive
obsolete/
2 changes: 2 additions & 0 deletions .isort.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[settings]
known_first_party=persipubsub, tests
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: python
python:
- "3.5"
- "3.6"
addons:
apt:
packages:
install:
- pip3 install -e .[dev]
- pip3 install coveralls
script:
- python3 precommit.py
- coveralls
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1.0.0
=====
* Initial version
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 Parquery AG

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 0 additions & 2 deletions README.md

This file was deleted.

Loading