project_collection module
Collection of Data to Science projects.
Source code in d2spy/models/project_collection.py
filter_by_description(keyword)
¶
Returns list of projects with descriptions containing text that matches the keyword text.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
keyword
|
str
|
Keyword text that will be matched with project descriptions. |
required |
Returns:
Name | Type | Description |
---|---|---|
ProjectCollection |
ProjectCollection
|
Collection of projects with keyword matches. |
Source code in d2spy/models/project_collection.py
filter_by_title(keyword)
¶
Returns list of projects with titles containing text that matches the keyword text.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
keyword
|
str
|
Keyword text that will be matched with project titles. |
required |
Returns:
Type | Description |
---|---|
ProjectCollection
|
List[Project]: List of projects with keyword matches. |