Activity Streams 2¶
activitystreams2 is a python library for producing Activity Streams 2.0
content. It doesn‘t have a lot of features (no extensions) but aims to be give
correct results and be easy to understand.
At the moment, only supports writing activity streams.
Installing¶
The recommended way of manually installing activitystreams2 is via pip
pip3 install activitystreams2
Examples¶
import activitystreams2
martin = activitystreams2.Actor(id='http://www.test.example/martin')
activity = activitystreams2.Create(
actor=martin,
summary='Martin created an image',
object='http://example.org/foo.jpg',
)
# do this to serialize it
json_string = str(activity)
Caveats¶
We completely don’t support extension types at the moment.