معرفی شرکت ها


chitose-0.0.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A client library for the AT Protocol (Bluesky)
ویژگی مقدار
سیستم عامل -
نام فایل chitose-0.0.2
نام chitose
نسخه کتابخانه 0.0.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده Muneyuki Noguchi <nogu.dev@gmail.com>
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/chitose/
مجوز -
# Chitose Chitose is a Python client library for the AT Protocol. ## Usage The API of Chitose is similar to [the ATP API](https://github.com/bluesky-social/atproto/tree/main/packages/api#advanced-api-calls). For example, you can use `app.bsky.feed.get_timeline()` to get the timeline as shown below. Replace `YOUR_USERNAME` and `YOUR_PASSWORD` with your username and your password respectively: ``` $ git clone https://github.com/mnogu/chitose.git $ cd chitose $ python3 >>> from chitose.agent import BskyAgent >>> agent = BskyAgent(service='https://bsky.social') >>> agent.login(identifier='YOUR_USERNAME', password='YOUR_PASSWORD') >>> agent.app.bsky.feed.get_timeline(limit=1) ``` You can also post with `com.atproto.repo.create_record()`: ```python from datetime import datetime from chitose.agent import BskyAgent from chitose.app.bsky.feed.post import Post agent = BskyAgent(service='https://example.com') agent.login(identifier='alice@mail.com', password='hunter2') record = Post(text='Hello, world!', created_at=datetime.now().isoformat()) agent.com.atproto.repo.create_record( repo=alice.did, collection='app.bsky.feed.post', record=record) ``` ## Documentation For all the functions and classes available in Chitose, refer to [the Chitose’s documentation](https://chitose.readthedocs.io/en/latest/). ## Installing While you can use Chitose without installing its Python package, you can install [the package](https://pypi.org/project/chitose/): ``` $ python3 -m pip install chitose ``` Alternatively, you can build a Python package and install it: ``` $ git clone https://github.com/mnogu/chitose.git $ cd chitose $ python3 -m pip install --upgrade build $ python3 -m build $ python3 -m pip install dist/chitose-*-py3-none-any.whl ``` ## Generating Code Most source files of Chitose are generated from the Lexicon files in the `atproto` directory, and you can generate Python code from these files by yourself: ``` $ git clone https://github.com/mnogu/chitose.git $ cd chitose $ python3 generate.py ``` You can also update the `atproto` directory and regenerate Python code: ``` $ git submodule update --remote atproto $ python3 generate.py ``` You may want to add new Python code to the repository or update the documentation: ``` $ git add chitose $ git commit ``` ``` $ python3 -m pip install sphinx $ cd docs $ sphinx-apidoc -o ./source ../chitose -f ```


زبان مورد نیاز

مقدار نام
>=3.9 Python


نحوه نصب


نصب پکیج whl chitose-0.0.2:

    pip install chitose-0.0.2.whl


نصب پکیج tar.gz chitose-0.0.2:

    pip install chitose-0.0.2.tar.gz