chainalysis.utils package¶
Module contents¶
- class chainalysis.utils.Utils[source]¶
Bases:
object
This class contains util/helper functions for users of the SDK.
- class chainalysis.utils.Stringify[source]¶
Bases:
object
This class contains functions to transform python objects into formatted string params so they can be used to query Data Solutions’ databases without needing to be transformed manually by the user.
- lists(data: Series | list) str [source]¶
Convert a list or pandas Series to a formatted string param.
- Parameters:
data (Union[Series, list]) – The list to be converted.
- Returns:
The converted list.
- Return type:
str
- columns(columns: list) str [source]¶
Convert a column select list to a formatted string param.
- Parameters:
columns (list) – The column select list object to be converted.
- Returns:
The converted column select list.
- Return type:
str