Skip to content

Commit 48043ee

Browse files
author
Samuel Hassine
committed
[doc] Enhance the README
1 parent cf4534c commit 48043ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
[![Website](https://img.shields.io/badge/website-opencti.io-blue.svg)](https://www.opencti.io)
44
[![CircleCI](https://circleci.com/gh/OpenCTI-Platform/client-python.svg?style=shield)](https://circleci.com/gh/OpenCTI-Platform/client-python/tree/master)
5+
[![readthedocs](https://readthedocs.org/projects/opencti-client-for-python/badge/?style=flat)](https://opencti-client-for-python.readthedocs.io/en/latest/)
56
[![GitHub release](https://img.shields.io/github/release/OpenCTI-Platform/client-python.svg)](https://github.com/OpenCTI-Platform/client-python/releases/latest)
67
[![Number of PyPI downloads](https://img.shields.io/pypi/dm/pycti.svg)](https://pypi.python.org/pypi/pycti/)
78
[![Slack Status](https://slack.luatix.org/badge.svg)](https://slack.luatix.org)
8-
[![readthedocs](https://readthedocs.org/projects/opencti-client-for-python/badge/?style=flat)](https://opencti-client-for-python.readthedocs.io/en/latest/)
99

1010
The official OpenCTI Python client helps developers to use the OpenCTI API by providing easy to use methods and utils.
1111
This client is also used by some OpenCTI components.

examples/get_all_indicators_using_pagination.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
while data["pagination"]["hasNextPage"]:
2626
after = data["pagination"]["endCursor"]
27-
print("Listing reports after " + after)
27+
print("Listing indicators after " + after)
2828
data = opencti_api_client.indicator.list(
2929
first=50, after=after, customAttributes=custom_attributes, withPagination=True
3030
)

0 commit comments

Comments
 (0)