14
14
15
15
## ansi
16
16
17
- [ Show source in formatter.py:59 ] ( ../../../licensecheck/formatter.py#L59 )
17
+ [ Show source in formatter.py:61 ] ( ../../../licensecheck/formatter.py#L61 )
18
18
19
19
Format to ansi.
20
20
@@ -23,6 +23,7 @@ Format to ansi.
23
23
----
24
24
- ` myLice ` * License* - project license
25
25
- ` packages ` * list[ PackageInfo] * - list of PackageCompats to format.
26
+ - ` hide_parameters ` * list[ str] * - list of parameters to ignore in the output.
26
27
27
28
#### Returns
28
29
@@ -32,7 +33,11 @@ Format to ansi.
32
33
#### Signature
33
34
34
35
``` python
35
- def ansi (myLice : License, packages : list[PackageInfo]) -> str : ...
36
+ def ansi (
37
+ myLice : License,
38
+ packages : list[PackageInfo],
39
+ hide_parameters : list[ucstr] | None = None ,
40
+ ) -> str : ...
36
41
```
37
42
38
43
#### See also
@@ -44,7 +49,7 @@ def ansi(myLice: License, packages: list[PackageInfo]) -> str: ...
44
49
45
50
## markdown
46
51
47
- [ Show source in formatter.py:123 ] ( ../../../licensecheck/formatter.py#L123 )
52
+ [ Show source in formatter.py:151 ] ( ../../../licensecheck/formatter.py#L151 )
48
53
49
54
Format to markdown.
50
55
@@ -53,6 +58,7 @@ Format to markdown.
53
58
----
54
59
- ` myLice ` * License* - project license
55
60
- ` packages ` * list[ PackageInfo] * - list of PackageCompats to format.
61
+ - ` hide_parameters ` * list[ str] * - list of parameters to ignore in the output.
56
62
57
63
#### Returns
58
64
@@ -62,7 +68,11 @@ Format to markdown.
62
68
#### Signature
63
69
64
70
``` python
65
- def markdown (myLice : License, packages : list[PackageInfo]) -> str : ...
71
+ def markdown (
72
+ myLice : License,
73
+ packages : list[PackageInfo],
74
+ hide_parameters : list[ucstr] | None = None ,
75
+ ) -> str : ...
66
76
```
67
77
68
78
#### See also
@@ -74,7 +84,7 @@ def markdown(myLice: License, packages: list[PackageInfo]) -> str: ...
74
84
75
85
## plainText
76
86
77
- [ Show source in formatter.py:107 ] ( ../../../licensecheck/formatter.py#L107 )
87
+ [ Show source in formatter.py:128 ] ( ../../../licensecheck/formatter.py#L128 )
78
88
79
89
Format to ansi.
80
90
@@ -83,6 +93,7 @@ Format to ansi.
83
93
----
84
94
- ` myLice ` * License* - project license
85
95
- ` packages ` * list[ PackageInfo] * - list of PackageCompats to format.
96
+ - ` hide_parameters ` * list[ str] * - list of parameters to ignore in the output.
86
97
87
98
#### Returns
88
99
@@ -92,7 +103,11 @@ Format to ansi.
92
103
#### Signature
93
104
94
105
``` python
95
- def plainText (myLice : License, packages : list[PackageInfo]) -> str : ...
106
+ def plainText (
107
+ myLice : License,
108
+ packages : list[PackageInfo],
109
+ hide_parameters : list[ucstr] | None = None ,
110
+ ) -> str : ...
96
111
```
97
112
98
113
#### See also
@@ -104,7 +119,7 @@ def plainText(myLice: License, packages: list[PackageInfo]) -> str: ...
104
119
105
120
## raw
106
121
107
- [ Show source in formatter.py:165 ] ( ../../../licensecheck/formatter.py#L165 )
122
+ [ Show source in formatter.py:206 ] ( ../../../licensecheck/formatter.py#L206 )
108
123
109
124
Format to json.
110
125
@@ -113,6 +128,7 @@ Format to json.
113
128
----
114
129
- ` myLice ` * License* - project license
115
130
- ` packages ` * list[ PackageInfo] * - list of PackageCompats to format.
131
+ - ` hide_parameters ` * list[ str] * - list of parameters to ignore in the output.
116
132
117
133
#### Returns
118
134
@@ -122,7 +138,11 @@ Format to json.
122
138
#### Signature
123
139
124
140
``` python
125
- def raw (myLice : License, packages : list[PackageInfo]) -> str : ...
141
+ def raw (
142
+ myLice : License,
143
+ packages : list[PackageInfo],
144
+ hide_parameters : list[ucstr] | None = None ,
145
+ ) -> str : ...
126
146
```
127
147
128
148
#### See also
@@ -134,7 +154,7 @@ def raw(myLice: License, packages: list[PackageInfo]) -> str: ...
134
154
135
155
## rawCsv
136
156
137
- [ Show source in formatter.py:188 ] ( ../../../licensecheck/formatter.py#L188 )
157
+ [ Show source in formatter.py:236 ] ( ../../../licensecheck/formatter.py#L236 )
138
158
139
159
Format to csv.
140
160
@@ -143,6 +163,7 @@ Format to csv.
143
163
----
144
164
- ` myLice ` * License* - project license
145
165
- ` packages ` * list[ PackageInfo] * - list of PackageCompats to format.
166
+ - ` hide_parameters ` * list[ str] * - list of parameters to ignore in the output.
146
167
147
168
#### Returns
148
169
@@ -152,7 +173,11 @@ Format to csv.
152
173
#### Signature
153
174
154
175
``` python
155
- def rawCsv (myLice : License, packages : list[PackageInfo]) -> str : ...
176
+ def rawCsv (
177
+ myLice : License,
178
+ packages : list[PackageInfo],
179
+ hide_parameters : list[ucstr] | None = None ,
180
+ ) -> str : ...
156
181
```
157
182
158
183
#### See also
@@ -164,7 +189,7 @@ def rawCsv(myLice: License, packages: list[PackageInfo]) -> str: ...
164
189
165
190
## stripAnsi
166
191
167
- [ Show source in formatter.py:44 ] ( ../../../licensecheck/formatter.py#L44 )
192
+ [ Show source in formatter.py:46 ] ( ../../../licensecheck/formatter.py#L46 )
168
193
169
194
Strip ansi codes from a given string.
170
195
0 commit comments