Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.11 KB

File metadata and controls

35 lines (26 loc) · 1.11 KB

Crawl

Properties

Name Type Description Notes
id str Unique crawl identifier
project_id str Project identifier
status str Crawl status
started_at datetime Crawl start timestamp
completed_at datetime Crawl completion timestamp [optional]
pages_crawled int Number of pages crawled [optional]
error_message str Error message if crawl failed [optional]

Example

from rankvectors.models.crawl import Crawl

# TODO update the JSON string below
json = "{}"
# create an instance of Crawl from a JSON string
crawl_instance = Crawl.from_json(json)
# print the JSON string representation of the object
print(Crawl.to_json())

# convert the object into a dict
crawl_dict = crawl_instance.to_dict()
# create an instance of Crawl from a dict
crawl_from_dict = Crawl.from_dict(crawl_dict)

[Back to Model list] [Back to API list] [Back to README]