معرفی شرکت ها


atwc-1.0.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Python interface to TWC's API
ویژگی مقدار
سیستم عامل OS Independent
نام فایل atwc-1.0.0
نام atwc
نسخه کتابخانه 1.0.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Marco Fagiolini
ایمیل نویسنده mfx@amdx.de
آدرس صفحه اصلی https://github.com/amdx/atwc
آدرس اینترنتی https://pypi.org/project/atwc/
مجوز Apache-2.0
# aTWC - Python interface to Teamwork Cloud Python interface to NoMagic/CATIA Teamwork Cloud Server. [Teamwork Cloud](https://www.3ds.com/products-services/catia/products/no-magic/teamwork-cloud/) server is a central repository service to store and retrieve [Cameo](https://www.3ds.com/products-services/catia/products/no-magic/cameo-systems-modeler/) and [MagicDraw](https://www.3ds.com/products-services/catia/products/no-magic/magicdraw/) models. TWC exposes a REST API that allows interaction with the stored models. This library has been primarily written as interface abstraction for Archimedes Exhibitions GmbH's Cameo Collaborator Publisher service, hence it's not intended as a general-purpose solution. aTWC is developed and maintained by [Archimedes Exhibitions GmbH](https://www.archimedes-exhibitions.de). ## Installation ```bash $ pip3 install atwc ``` ## Usage example ```python import asyncio import atwc async def main(): client = atwc.client.Client('https://twc.local:8111/osmc/', 'user', 'password') async with client.create_session(): browser = atwc.browsers.ResourceBrowser(client) await browser.fetch() print('MagicDraw resources:') for resource in browser.md_resources: print(f' {await browser.get_category_path(resource)}/' f'{resource["dcterms:title"]}') asyncio.run(main()) ``` ## Running the examples Copy the file `config.py.dist` into `config.py` in the `examples` folder: ```bash $ cd examples $ cp config.py.dist config.py ``` Edit the file `config.py` and replace the placeholders for all the entries. More information can be found in the docstring of each script.


نیازمندی

مقدار نام
>=3.8.1,<4.0.0 aiohttp


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

مقدار نام
>=3.8,<4.0 Python


نحوه نصب


نصب پکیج whl atwc-1.0.0:

    pip install atwc-1.0.0.whl


نصب پکیج tar.gz atwc-1.0.0:

    pip install atwc-1.0.0.tar.gz