Package Search Help

You can use boolean logic (e.g. AND/OR/NOT) for complex search queries. For more help and examples, see the search documentation.

Search by package name:
my-package (implicit)
name:my-package (explicit)

Search by package filename:
filename:my-package.ext 

Search by package tag:
tag:latest 

Search by package version:
version:1.0.0  prerelease:true (prereleases)
prerelease:false (no prereleases)

Search by package architecture:
architecture:x86_64 

Search by package distribution:
distribution:el 

Search by package license:
license:MIT 

Search by package format:
format:deb 

Search by package status:
status:in_progress 

Search by package file checksum:
checksum:5afba 

Search by package security status:
severity:critical 

Search by package vulnerabilities:
vulnerabilities:>1 
vulnerabilities:<1000 

Search by # of package downloads:
downloads:>8 
downloads:<100 

Search by package type:
type:binary 
type:source 

Search by package size (bytes):
size:>50000 
size:<10000 

Search by dependency name/version:
dependency:log4j 
dependency:log4j=1.0.0 
dependency:log4j>1.0.0 

Search by uploaded date:
uploaded:>"1 day ago" 
uploaded:<"August 14, 2022 EST" 

Search by entitlement token (identifier):
entitlement:3lKPVJPosCsY 

Search by policy violation:
policy_violated:true
deny_policy_violated:true
license_policy_violated:true
vulnerability_policy_violated:true

Search by repository:
repository:repo-name

Search by last download date:
last_downloaded:<"30 days ago" 
last_downloaded:>"August 14, 2022 EST" 

Search queries for all Debian-specific (and related) package types

Search by component:
deb_component:unstable

Search queries for all Maven-specific (and related) package types

Search by group ID:
maven_group_id:org.apache

Search queries for all Docker-specific (and related) package types

Search by image digest:
docker_image_digest:sha256:7c5..6d4
(full hashref only)

Search by layer digest:
docker_layer_digest:sha256:4c4..ae4
(full hashref only)

Search queries for all Generic-specific package types

Search by file path:
generic_filepath:path/to/file.txt

Search by directory:
generic_directory:path/to

Field type modifiers (depending on the type, you can influence behaviour)

For all queries, you can use:
~foo for negation

For string queries, you can use:
^foo to anchor to start of term
foo$ to anchor to end of term
foo*bar for fuzzy matching

For number/date or version queries, you can use:
>foo for values greater than
>=foo for values greater / equal
<foo for values less than
<=foo for values less / equal

Need a secure and centralised artifact repository to deliver Alpine, Cargo, CocoaPods, Composer, Conan, Conda, CRAN, Dart, Debian, Docker, Generic, Go, Helm, Hex, HuggingFace, LuaRocks, Maven, MCP, npm, NuGet, P2, Python, RedHat, Ruby, Swift, Terraform, Vagrant, VSX, Raw & More packages?

Cloudsmith is the new standard in Package / Artifact Management and Software Distribution.

With support for all major package formats, you can trust us to manage your software supply chain.

Start My Free Trial

Python logo ArticutAPI  1.1.7

One-liner (summary)

Articut NLP system provides not only finest results on Chinese word segmentaion (CWS), Part-of-Speech tagging (POS) and Named Entity Recogintion tagging (NER), but also the fastest online API service in the NLP industry.

Description

# Articut 中文斷詞暨詞性標記服務 ## [依語法結構計算,而非統計方法的中文斷詞。] ### [Articut API Website](https://api.droidtown.co/) ### [Document](https://api.droidtown.co/ArticutAPI/document/) ### [![Articut Demo](https://img.youtube.com/vi/AnvdKmVLlcA/0.jpg)](https://youtu.be/AnvdKmVLlcA "Articut Demo") ## Benchmark ### 設計目標 名稱 | ArticutAPI | MP_ArticutAPI | WS_ArticutAPI | :----------:|:-------------------:|:-------------------:|:------------------:| 產品 | Online / Docker | Docker | Docker | 技術 | HTTP Request | MultiProcessing | WebSocket | 特色 | 簡單易用 | 批次處理 | 即時處理 | 適用情景 | 任何 | 文本分析 | 聊天機器人 | ### 處理速度 名稱 | ArticutAPI | MP_ArticutAPI | WS_ArticutAPI | :----------:|-------------:|-------------------:|-------------------:| 時間 | 0.1252 秒 | 0.1206 秒 | 0.0677 秒 | ### 大量文本 句數 | ArticutAPI | MP_ArticutAPI | WS_ArticutAPI | :----------:|--------------:|-------------------:|------------------:| 方法 | parse() | bulk_parse(20) | parse() | 1K | 155 秒 | 8 秒 | 18 秒 | 2K | 306 秒 | 14 秒 | 35 秒 | 3K | 455 秒 | 17 秒 | 43 秒 | - 測試平台爲 4 核心 CPU 並使用 4 個 Process。 - `MP_ArticutAPI`使用 bulk_parse(bulkSize=20) 方法。 - `WS_ArticutAPI`使用 parse() 方法。 ---------------------- # ArticutAPI ## 安裝方法 ```sh pip3 install ArticutAPI ``` ## 說明文件 函數說明請參閱 Docs/index.html ## 使用方法 ### Articut CWS (Chinese word segmentation) ``` from ArticutAPI import Articut from pprint import pprint username = "" #這裡填入您在 https://api.droidtown.co 使用的帳號 email。若使用空字串,則預設使用每小時 2000 字的公用額度。 apikey = "" #這裡填入您在 https://api.droidtown.co 登入後取得的 api Key。若使用空字串,則預設使用每小時 2000 字的公用額度。 articut = Articut(username, apikey) inputSTR = "會被大家盯上,才證明你有實力。" resultDICT = articut.parse(inputSTR) pprint(resultDICT) ``` ### 回傳結果 ``` {"exec_time": 0.06723856925964355, "level": "lv2", "msg": "Success!", "result_pos": ["<MODAL>會</MODAL><ACTION_lightVerb>被</ACTION_lightVerb><ENTITY_nouny>大家</ENTITY_nouny><ACTION_verb>盯上</ACTION_verb>", ",", "<MODAL>才</MODAL><ACTION_verb>證明</ACTION_verb><ENTITY_pronoun>你</ENTITY_pronoun><ACTION_verb>有</ACTION_verb><ENTITY_noun>實力</ENTITY_noun>", "。"], "result_segmentation": "會/被/大家/盯上/,/才/證明/你/有/實力/。/", "status": True, "version": "v118", "word_count_balance": 9985, "product": "https://api.droidtown.co/product/", "document": "https://api.droidtown.co/document/" } ``` ### 列出斷詞結果所有詞性標記的內容詞 ### 可以依需求找出「名詞」、「動詞」或是「形容詞」…等詞彙語意本身已經完整的詞彙。 ``` inputSTR = "你計劃過地球人類補完計劃" resultDICT = articut.parse(inputSTR, level="lv1") pprint(resultDICT["result_pos"]) #列出所有的 content word. contentWordLIST = articut.getContentWordLIST(resultDICT) pprint(contentWordLIST) #列出所有的 verb word. (動詞) verbStemLIST = articut.getVerbStemLIST(resultDICT) pprint(verbStemLIST) #列出所有的 noun word. (名詞) nounStemLIST = articut.getNounStemLIST(resultDICT) pprint(nounStemLIST) #列出所有的 location word. (地方名稱) locationStemLIST = articut.getLocationStemLIST(resultDICT) pprint(locationStemLIST) ``` ### 回傳結果 ### ``` #resultDICT["result_pos"] ["<ENTITY_pronoun>你</ENTITY_pronoun><ACTION_verb>計劃</ACTION_verb><ASPECT>過</ASPECT><LOCATION>地球</LOCATION><ENTITY_oov>人類</ENTITY_oov><ACTION_verb>補完</ACTION_verb><ENTITY_nounHead>計劃</ENTITY_nounHead>"] #列出所有的 content word. [[(177, 179, "計劃"), (144, 145, "補"), (116, 118, "人類"), (47, 49, "計劃")]] #列出所有的 verb word. (動詞) [[(41, 43, '計劃'), (111, 112, '補')]] #列出所有的 noun word. (名詞) [[(88, 90, '人類'), (138, 140, '計劃')]] #列出所有的 location word. (地方名稱) [[(62, 64, "地球")]] ``` ### 取得 Articut 版本列表 ``` resultDICT = articut.versions() pprint(resultDICT) ``` ### 回傳結果 ``` {"msg": "Success!", "status": True, "versions": [{"level": ["lv1", "lv2"], "release_date": "2019-04-25", "version": "latest"}, {"level": ["lv1", "lv2"], "release_date": "2019-04-25", "version": "v118"}, {"level": ["lv1", "lv2"], "release_date": "2019-04-24", "version": "v117"},... } ``` ---------------------- ## 進階用法 ### 進階用法01 >> Articut Level :斷詞的深度。數字愈小,切得愈細 (預設: lv2)。 ``` inputSTR = "小紅帽" resultDICT = articut.parse(inputSTR, level="lv1") pprint(resultDICT) ``` ### 回傳結果 lv1 極致斷詞,適合 NLU 或機器自動翻譯使用。呈現結果將句子中的每個元素都儘量細分出來。 ``` {"exec_time": 0.04814624786376953, "level": "lv1", "msg": "Success!", "result_pos": ["<MODIFIER>小</MODIFIER><MODIFIER_color>紅</MODIFIER_color><ENTITY_nounHead>帽</ENTITY_nounHead>"], "result_segmentation": "小/紅/帽/", "status": True, "version": "v118", "word_count_balance": 9997,...} ``` ### 回傳結果 lv2 詞組斷詞,適合文本分析、特徵值計算、關鍵字擷取…等應用。呈現結果將以具意義的最小單位呈現。 ``` {"exec_time": 0.04195523262023926, "level": "lv2", "msg": "Success!", "result_pos": ["<ENTITY_nouny>小紅帽</ENTITY_nouny>"], "result_segmentation": "小紅帽/", "status": True, "version": "v118", "word_count_balance": 9997,...} ``` ---------------------- ### 進階用法 02 >> UserDefinedDictFile :使用者自定詞典。 [![Articut UserDefined Demo](http://i3.ytimg.com/vi/fOyyQyVkZ2k/hqdefault.jpg)](https://youtu.be/fOyyQyVkZ2k "Articut UserDefined Demo") 因為 Articut 只處理「語言知識」而不處理「百科知識」。 我們提供「使用者自定義」詞彙表的功能,使用 Dictionary 格式,請自行編寫。 UserDefinedFile.json ``` {"雷姆":["小老婆"], "艾蜜莉亞":["大老婆"], "初音未來": ["初音", "只是個軟體"], "李敏鎬": ["全民歐巴", "歐巴"]} ``` runArticut.py ``` from ArticutAPI import Articut from pprint import pprint articut = Articut() userDefined = "./UserDefinedFile.json" inputSTR = "我的最愛是小老婆,不是初音未來。" # 使用自定義詞典 resultDICT = articut.parse(inputSTR, userDefinedDictFILE=userDefined) pprint(resultDICT) # 未使用自定義詞典 resultDICT = articut.parse(inputSTR) pprint(resultDICT) ``` ### 回傳結果 ``` # 使用自定義詞典 {"result_pos": ["<ENTITY_pronoun>我</ENTITY_pronoun><FUNC_inner>的</FUNC_inner><ACTION_verb>最愛</ACTION_verb><AUX>是</AUX><UserDefined>小老婆</UserDefined>", ",", "<FUNC_negation>不</FUNC_negation><AUX>是</AUX><UserDefined>初音未來</UserDefined>", "。"], "result_segmentation": "我/的/最愛/是/小老婆/,/不/是/初音未來/。/",...} # 未使用自定義詞典 {"result_pos": ["<ENTITY_pronoun>我</ENTITY_pronoun><FUNC_inner>的</FUNC_inner><ACTION_verb>最愛</ACTION_verb><AUX>是</AUX><ENTITY_nouny>小老婆</ENTITY_nouny>", ",", "<FUNC_negation>不</FUNC_negation><AUX>是</AUX><ENTITY_nouny>初音</ENTITY_nouny><TIME_justtime>未來</TIME_justtime>", "。"], "result_segmentation": "我/的/最愛/是/小老婆/,/不/是/初音/未來/。/",...} ``` ---------------------- ### 進階用法 03 - 調用資料觀光資訊資料庫 政府開放平台中存有「交通部觀光局蒐集各政府機關所發佈空間化觀光資訊」。Articut 可取用其中的資訊,並標記為 \<KNOWLEDGE_place> **上傳內容 (JSON 格式)** ``` { "username": "test@email.com", "api_key": "anapikeyfordocthatdoesnwork@all", "input_str": "花蓮的原野牧場有一間餐廳", "version": "v137", "level": "lv1", "opendata_place": true } ``` **回傳內容 (JSON 格式)** ``` { "exec_time": 0.013453006744384766, "level": "lv1", "msg": "Success!", "result_pos": ["<LOCATION>花蓮</LOCATION><FUNC_inner>的</FUNC_inner><KNOWLEDGE_place>原野牧場</KNOWLEDGE_place><ACTION_verb>有</ACTION_verb><ENTITY_classifier>一間</ENTITY_classifier><ENTITY_noun>餐廳</ENTITY_noun>"], "result_segmentation": "花蓮/的/原野牧場/有/一間/餐廳/", "status": True, "version": "v137", "word_count_balance": 99987 } ``` ---------------------- ### 進階用法 04 - 基於 TF-IDF 算法的關鍵詞抽取 * articut.analyse.extract_tags(sentence, topK=20, withWeight=False, allowPOS=()) * sentence 為要提取關鍵詞的文本 * topK 為提取幾個 TF-IDF 的關鍵詞,預設值為 20 * withWeight 為是否返回關鍵詞權重值,預設值為 False * allowPOS 僅抽取指定詞性的詞,預設值為空,亦即全部抽取 * articut.analyse.TFIDF(idf\_path=None) 新建 TFIDF 物件,idf_path 為 IDF 語料庫路徑 使用範例: <https://github.com/Droidtown/ArticutAPI/blob/master/ArticutAPI.py#L624> --- ### 進階用法 05 - 基於 TextRank 算法的關鍵詞抽取 * articut.analyse.textrank(sentence, topK=20, withWeight=False, allowPOS=()) * sentence 為要提取關鍵詞的文本 * topK 為提取幾個 TF-IDF 的關鍵詞,預設值為 20 * withWeight 為是否返回關鍵詞權重值,預設值為 False * allowPOS 僅抽取指定詞性的詞,預設值為空,亦即全部抽取 * articut.analyse.TextRank() 新建 TextRank 物件 算法論文:[TextRank: Bringing Order into Texts](http://web.eecs.umich.edu/~mihalcea/papers/mihalcea.emnlp04.pdf) ### 基本思想: 1. 將待抽取關鍵詞的文本斷詞 2. 以固定的窗格大小 (預設值為 5,通過 span 屬性調整),詞之間的共現關係,建構出不帶權圖 3. 計算途中節點的 PageRank 使用範例: <https://github.com/Droidtown/ArticutAPI/blob/master/ArticutAPI.py#L629> --- ### 進階用法 06 - 使用 GraphQL 查詢斷詞結果 [![Watch the video](Screenshots/Articut-GraphQL.png)](https://youtu.be/0Ubx08WJ7rU) ### 使用 GraphiQL 工具 **環境需求** ``` Python 3.6.1 $ pip install graphene $ pip install starlette $ pip install jinja2 $ pip install uvicorn ``` 執行 ArticutGraphQL.py 帶入 Articut 斷詞結果檔案路徑,並開啟瀏覽器輸入網址 http://0.0.0.0:8000/ ``` $ python ArticutGraphQL.py articutResult.json ``` ### 使用範例 01 ![GraphiQL Example 01](Screenshots/GraphiQL_Example01.png) ### 使用範例 02 ![GraphiQL Example 02](Screenshots/GraphiQL_Example02.png) ### 使用 Articut-GraphQL 安裝 graphene 模組 ``` $ pip install graphene ``` ### 使用範例 01 ``` inputSTR = "地址:宜蘭縣宜蘭市縣政北七路六段55巷1號2樓" result = articut.parse(inputSTR) with open("articutResult.json", "w", encoding="utf-8") as resultFile: json.dump(result, resultFile, ensure_ascii=False) graphQLResult = articut.graphQL.query( filePath="articutResult.json", query=""" { meta { lang description } doc { text tokens { text pos_ tag_ isStop isEntity isVerb isTime isClause isKnowledge } } }""") pprint(graphQLResult) ``` ### 回傳結果 ![Articut-GraphQL Example 01](Screenshots/Articut-GraphQL_Example01.png) ### 使用範例 02 ``` inputSTR = "劉克襄在本次活動當中,分享了台北中山北路一日遊路線。他表示當初自己領著柯文哲一同探索了雙連市場與中山捷運站的小吃與商圈,還有商圈內的文創商店與日系雜物店鋪,都令柯文哲留下深刻的印象。劉克襄也認為,雙連市場內的魯肉飯、圓仔湯與切仔麵,還有九條通的日式店家、居酒屋等特色,也能讓人感受到台北舊城區不一樣的魅力。" result = articut.parse(inputSTR) with open("articutResult.json", "w", encoding="utf-8") as resultFile: json.dump(result, resultFile, ensure_ascii=False) graphQLResult = articut.graphQL.query( filePath="articutResult.json", query=""" { meta { lang description } doc { text ents { persons { text pos_ tag_ } } } }""") pprint(graphQLResult) ``` ### 回傳結果 ![Articut-GraphQL 回傳結果2](Screenshots/Articut-GraphQL_Example02.png)

Size

100.6 KB

Downloads

5

Status  Completed
Checksum (MD5) 6d7b492d28e9642e960bf031eaec0c1c
Checksum (SHA-1) 3684da6199a0345914b911ad00f5fc536fd14fd3
Checksum (SHA-256) 7d26fccc1da36983abb7494a35b0a08df47e3394df0f9304b956c2b009f0af18
Checksum (SHA-512) 0eb9a7551a36c4f8a0e005fe2c5a0095a2800cd6926742bf4ca957daa143ea5a11…
GPG Signature
GPG Fingerprint 6811684bac0b8895434e97bdd4391b8fb999e537
Storage Region  Dublin, Ireland
Type  Binary (contains binaries and binary artifacts)
Uploaded At 4 months, 3 weeks ago
Uploaded By Fetched by Cloudsmith
Slug Id articutapi-117-py3-none-anywhl-gk81
Unique Id q50zkXz5TAyHtG0l
Version (Raw) 1.1.7
Version (Parsed)
  • Major: 1
  • Minor: 1
  • Patch: 7
  • Type: SemVer (Compat)
  extended metadata
Author Droidtown Linguistic Tech. Co. Ltd. <info@droidtown.co>
Classifiers Development Status :: 5 - Production/Stable | Intended Audience :: Customer Service | Intended Audience :: Developers | Intended Audience :: Information Technology | License :: OSI Approved :: MIT License | Natural Language :: Chinese (Traditional) | Operating System :: OS Independent | Programming Language :: Python :: 3 | Programming Language :: Python :: 3 :: Only | Programming Language :: Python :: 3.6 | Programming Language :: Python :: 3.7 | Programming Language :: Python :: 3.8 | Programming Language :: Python :: 3.9 | Topic :: Software Development :: Libraries :: Python Modules | Topic :: Text Processing | Topic :: Text Processing :: Filters | Topic :: Text Processing :: Linguistic | Topic :: Text Processing :: Markup :: XML | Topic :: Utilities
Homepage URL https://github.com/Droidtown/ArticutAPI
Keywords NLP,NLU,CWS,POS,NER,AI,artificial intelligence,Chinese word segmentation,computational linguistics,language,linguistics,graphQL,natural language,natural language processing,natural language understanding,parsing,part-of-speech-embdding,part-of-speech-tagg
Metadata Version 2.1
Project Urls Documentation, https://api.droidtown.co/ArticutAPI/document/ | Source, https://github.com/Droidtown/ArticutAPI
Py Filetype bdist_wheel
Py Version py3
Requires Dist graphene | requests (>=2.25.1)
Requires Python >=3.6.1
pkg ArticutAPI-1.1.7-py3-none-any.w… 5
100.6 KB
md5 sha1 sha256 sha512
Package Contents (ArticutAPI-1.1.7-py3-none-any.whl)
Loading...

This package has 27 files/directories.

 Newer Python logo
ArticutAPI
 1.3.6
6 Fetched by Cloudsmith
 Newer Python logo
ArticutAPI
 1.3.5
5 Fetched by Cloudsmith
 Newer Python logo
ArticutAPI
 1.3.4
5 Fetched by Cloudsmith
 Newer Python logo
ArticutAPI
 1.3.3
5 Fetched by Cloudsmith
 Newer Python logo
ArticutAPI
 1.3.0
5 Fetched by Cloudsmith
 Newer Python logo
ArticutAPI
 1.2.2
5 Fetched by Cloudsmith
 Newer Python logo
ArticutAPI
 1.2.1
5 Fetched by Cloudsmith
 Newer Python logo
ArticutAPI
 1.2.0
5 Fetched by Cloudsmith
 Newer Python logo
ArticutAPI
 1.1.9
5 Fetched by Cloudsmith
 Newer Python logo
ArticutAPI
 1.1.8
5 Fetched by Cloudsmith
  Python logo
ArticutAPI
 1.1.7
5 Fetched by Cloudsmith
 Older Python logo
ArticutAPI
 1.1.6
5 Fetched by Cloudsmith
 Older Python logo
ArticutAPI
 1.1.5
5 Fetched by Cloudsmith
 Older Python logo
ArticutAPI
 1.1.4
5 Fetched by Cloudsmith
 Older Python logo
ArticutAPI
 1.1.3
5 Fetched by Cloudsmith
 Older Python logo
ArticutAPI
 1.1.2
5 Fetched by Cloudsmith
 Older Python logo
ArticutAPI
 1.1.1
5 Fetched by Cloudsmith
 Older Python logo
ArticutAPI
 1.1.0
5 Fetched by Cloudsmith
 Older Python logo
ArticutAPI
 1.0.12
5 Fetched by Cloudsmith
 Older Python logo
ArticutAPI
 1.0.11
5 Fetched by Cloudsmith

Last scanned

4 months, 3 weeks ago

Scan result

Clean

Vulnerability count

0

Max. severity

Unknown

You can embed a badge in another website that shows this or the latest version of this package.

To embed the badge for this specific package version, use the following:

[![This version of 'ArticutAPI' @ Cloudsmith](https://api.cloudsmith.com/v1/badges/version/demo-docs/awesome-repo/python/ArticutAPI/1.1.7/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/?render=true)](https://cloudsmith.io/~demo-docs/repos/awesome-repo/packages/detail/python/ArticutAPI/1.1.7/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/)
|This version of 'ArticutAPI' @ Cloudsmith|
.. |This version of 'ArticutAPI' @ Cloudsmith| image:: https://api.cloudsmith.com/v1/badges/version/demo-docs/awesome-repo/python/ArticutAPI/1.1.7/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/?render=true
   :target: https://cloudsmith.io/~demo-docs/repos/awesome-repo/packages/detail/python/ArticutAPI/1.1.7/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/
image::https://api.cloudsmith.com/v1/badges/version/demo-docs/awesome-repo/python/ArticutAPI/1.1.7/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/?render=true[link="https://cloudsmith.io/~demo-docs/repos/awesome-repo/packages/detail/python/ArticutAPI/1.1.7/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/",title="This version of 'ArticutAPI' @ Cloudsmith"]
<a href="https://cloudsmith.io/~demo-docs/repos/awesome-repo/packages/detail/python/ArticutAPI/1.1.7/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/"><img src="https://api.cloudsmith.com/v1/badges/version/demo-docs/awesome-repo/python/ArticutAPI/1.1.7/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/?render=true" alt="This version of 'ArticutAPI' @ Cloudsmith" /></a>

rendered as: This version of 'ArticutAPI' @ Cloudsmith

To embed the badge for the latest package version, use the following:

[![Latest version of 'ArticutAPI' @ Cloudsmith](https://api.cloudsmith.com/v1/badges/version/demo-docs/awesome-repo/python/ArticutAPI/latest/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/?render=true&show_latest=true)](https://cloudsmith.io/~demo-docs/repos/awesome-repo/packages/detail/python/ArticutAPI/latest/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/)
|Latest version of 'ArticutAPI' @ Cloudsmith|
.. |Latest version of 'ArticutAPI' @ Cloudsmith| image:: https://api.cloudsmith.com/v1/badges/version/demo-docs/awesome-repo/python/ArticutAPI/latest/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/?render=true&show_latest=true
   :target: https://cloudsmith.io/~demo-docs/repos/awesome-repo/packages/detail/python/ArticutAPI/latest/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/
image::https://api.cloudsmith.com/v1/badges/version/demo-docs/awesome-repo/python/ArticutAPI/latest/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/?render=true&show_latest=true[link="https://cloudsmith.io/~demo-docs/repos/awesome-repo/packages/detail/python/ArticutAPI/latest/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/",title="Latest version of 'ArticutAPI' @ Cloudsmith"]
<a href="https://cloudsmith.io/~demo-docs/repos/awesome-repo/packages/detail/python/ArticutAPI/latest/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/"><img src="https://api.cloudsmith.com/v1/badges/version/demo-docs/awesome-repo/python/ArticutAPI/latest/a=noarch;xf=bdist_wheel;xn=articutapi;xv=py3/?render=true&show_latest=true" alt="Latest version of 'ArticutAPI' @ Cloudsmith" /></a>

rendered as: Latest version of 'ArticutAPI' @ Cloudsmith

These instructions assume you have setup the repository first (or read it).

To install/use ArticutAPI @ version 1.1.7 ...

pip install 'ArticutAPI==1.1.7'

You can also install the latest version of this package:

pip install --upgrade 'ArticutAPI'

If necessary, you can specify the repository directly:

pip install \
  --index-url=https://dl.cloudsmith.io/public/demo-docs/awesome-repo/python/simple/ \
  ArticutAPI==1.1.7

If you've got a project requirements.txt file, you can specify this as a dependency:

--index-url=https://dl.cloudsmith.io/public/demo-docs/awesome-repo/python/simple/
ArticutAPI==1.1.7

In addition, you can use this repository as an extra index url. However, please read our documentation on this parameter before using it. For example in a requirements.txt file:

--extra-index-url=https://dl.cloudsmith.io/public/demo-docs/awesome-repo/python/simple/
ArticutAPI==1.1.7
Warning: We highly recommend using pip (or similar) rather than installing directly.
Top