Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
coolamqp
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
coolamqp
Commits
77058df3
Commit
77058df3
authored
8 years ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
v0.81
parent
d7ce5af1
No related branches found
Branches containing commit
Tags
v0.81
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+8
-0
8 additions, 0 deletions
README.md
setup.py
+2
-1
2 additions, 1 deletion
setup.py
with
10 additions
and
1 deletion
README.md
+
8
−
0
View file @
77058df3
...
@@ -16,12 +16,20 @@ and there are memoryviews **_everywhere_**.
...
@@ -16,12 +16,20 @@ and there are memoryviews **_everywhere_**.
This is borderline absurd.
This is borderline absurd.
CoolAMQP is not a direct AMQP client - it also handles reconnections, transactional sending,
and so on, mostly via Futures. This means it has a certain opinion on how to
handle AMQP, but you can feel the spirit of AMQP underneath.
The project is actively maintained and used in a commercial project. Tests can run
The project is actively maintained and used in a commercial project. Tests can run
either on Vagrant (Vagrantfile attached) or Travis CI, and run against RabbitMQ.
either on Vagrant (Vagrantfile attached) or Travis CI, and run against RabbitMQ.
CoolAMQP won't touch your messages. It's your bag of bytes, and your properties.
Enjoy!
Enjoy!
_Watch out for memoryviews!_
## Notes
## Notes
Assertions are sprinkled throughout the code. You may wish to run with optimizations enabled
Assertions are sprinkled throughout the code. You may wish to run with optimizations enabled
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
1
View file @
77058df3
...
@@ -22,7 +22,8 @@ setup(name=u'CoolAMQP',
...
@@ -22,7 +22,8 @@ setup(name=u'CoolAMQP',
'
coolamqp.framing.compilation
'
,
'
coolamqp.framing.compilation
'
,
],
],
license
=
u
'
MIT License
'
,
license
=
u
'
MIT License
'
,
long_description
=
u
'''
AMQP client, but with dynamic class generation and memoryviews FOR THE GODSPEED.
long_description
=
u
'''
Pure Python AMQP client, but with dynamic class generation and memoryviews FOR THE GODSPEED.
Also, handles your reconnects and transactionality THE RIGHT WAY
'''
,
Also, handles your reconnects and transactionality THE RIGHT WAY
'''
,
requires
=
[
'
amqp
'
,
'
six
'
,
'
monotonic
'
],
requires
=
[
'
amqp
'
,
'
six
'
,
'
monotonic
'
],
tests_require
=
[
"
nose
"
],
tests_require
=
[
"
nose
"
],
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment