v0.0.32
What's Changed
Docs: https://atproto.blue/en/latest/text_builder.html
Create rich text using TexBuilder:
from atproto.utils import TextBuilder
text_builder = TextBuilder()
text_builder.tag('This is a rich message. ', 'atproto')
text_builder.text('I can mention ')
text_builder.mention('account', 'did:plc:kvwvcn5iqfooopmyzvb4qzba')
text_builder.text(' and add clickable ')
text_builder.link('link', 'https://atproto.blue/')
or
from atproto.utils import TextBuilder
text_builder = TextBuilder().text('Test msg using ').link('Python SDK', 'https://atproto.blue/')
and send it
from atproto import Client
from atproto.utils import TextBuilder
client = Client()
client.send_post(TextBuilder().link('Python SDK', 'https://atproto.blue/'))
- Lock dependencies by major version only by @MarshalX in #195
- Fix parsing of lexicon procedure parameters by @MarshalX in #196
- Update lexicons fetched from ffe39aa committed 2023-12-08T21:32:06Z by @MarshalX in #197
- Update code snippets in README by @MarshalX in #198
- Update changelog for v0.0.31 by @MarshalX in #191
Full Changelog: v0.0.31...v0.0.32