|
8 | 8 |
|
9 | 9 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
10 | 10 |
|
11 | | - <title>Welcome to Python String Utils’s documentation! — Python String Utils 0.4.2 documentation</title> |
| 11 | + <title>Welcome to Python String Utils’s documentation! — Python String Utils 0.5.0 documentation</title> |
12 | 12 |
|
13 | 13 |
|
14 | 14 |
|
|
33 | 33 | <link rel="index" title="Index" |
34 | 34 | href="genindex.html"/> |
35 | 35 | <link rel="search" title="Search" href="search.html"/> |
36 | | - <link rel="top" title="Python String Utils 0.4.2 documentation" href="#"/> |
| 36 | + <link rel="top" title="Python String Utils 0.5.0 documentation" href="#"/> |
37 | 37 |
|
38 | 38 |
|
39 | 39 | <script src="_static/js/modernizr.min.js"></script> |
|
61 | 61 |
|
62 | 62 |
|
63 | 63 | <div class="version"> |
64 | | - 0.4.2 |
| 64 | + 0.5.0 |
65 | 65 | </div> |
66 | 66 |
|
67 | 67 |
|
@@ -153,6 +153,22 @@ <h1>Welcome to Python String Utils’s documentation!<a class="headerlink" h |
153 | 153 | </table> |
154 | 154 | </dd></dl> |
155 | 155 |
|
| 156 | +<dl class="function"> |
| 157 | +<dt id="string_utils.is_full_string"> |
| 158 | +<code class="descclassname">string_utils.</code><code class="descname">is_full_string</code><span class="sig-paren">(</span><em>string</em><span class="sig-paren">)</span><a class="headerlink" href="#string_utils.is_full_string" title="Permalink to this definition">¶</a></dt> |
| 159 | +<dd><p>Check if a string is not empty (it must contains at least one non space character).</p> |
| 160 | +<table class="docutils field-list" frame="void" rules="none"> |
| 161 | +<col class="field-name" /> |
| 162 | +<col class="field-body" /> |
| 163 | +<tbody valign="top"> |
| 164 | +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>string</strong> (<em>str</em>) – String to check.</td> |
| 165 | +</tr> |
| 166 | +<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">True if not empty, false otherwise.</td> |
| 167 | +</tr> |
| 168 | +</tbody> |
| 169 | +</table> |
| 170 | +</dd></dl> |
| 171 | + |
156 | 172 | <dl class="function"> |
157 | 173 | <dt id="string_utils.is_url"> |
158 | 174 | <code class="descclassname">string_utils.</code><code class="descname">is_url</code><span class="sig-paren">(</span><em>string</em>, <em>allowed_schemes=None</em><span class="sig-paren">)</span><a class="headerlink" href="#string_utils.is_url" title="Permalink to this definition">¶</a></dt> |
@@ -380,14 +396,30 @@ <h1>Welcome to Python String Utils’s documentation!<a class="headerlink" h |
380 | 396 | <col class="field-name" /> |
381 | 397 | <col class="field-body" /> |
382 | 398 | <tbody valign="top"> |
383 | | -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>string</strong> – String to check.</td> |
| 399 | +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>string</strong> (<em>str</em>) – String to check.</td> |
384 | 400 | </tr> |
385 | 401 | <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">True if the string is a pangram, False otherwise.</td> |
386 | 402 | </tr> |
387 | 403 | </tbody> |
388 | 404 | </table> |
389 | 405 | </dd></dl> |
390 | 406 |
|
| 407 | +<dl class="function"> |
| 408 | +<dt id="string_utils.is_isogram"> |
| 409 | +<code class="descclassname">string_utils.</code><code class="descname">is_isogram</code><span class="sig-paren">(</span><em>string</em><span class="sig-paren">)</span><a class="headerlink" href="#string_utils.is_isogram" title="Permalink to this definition">¶</a></dt> |
| 410 | +<dd><p>Checks if the string is an isogram (<a class="reference external" href="https://en.wikipedia.org/wiki/Isogram">https://en.wikipedia.org/wiki/Isogram</a>).</p> |
| 411 | +<table class="docutils field-list" frame="void" rules="none"> |
| 412 | +<col class="field-name" /> |
| 413 | +<col class="field-body" /> |
| 414 | +<tbody valign="top"> |
| 415 | +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>string</strong> (<em>str</em>) – String to check.</td> |
| 416 | +</tr> |
| 417 | +<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">True if isogram, false otherwise.</td> |
| 418 | +</tr> |
| 419 | +</tbody> |
| 420 | +</table> |
| 421 | +</dd></dl> |
| 422 | + |
391 | 423 | <dl class="function"> |
392 | 424 | <dt id="string_utils.words_count"> |
393 | 425 | <code class="descclassname">string_utils.</code><code class="descname">words_count</code><span class="sig-paren">(</span><em>string</em><span class="sig-paren">)</span><a class="headerlink" href="#string_utils.words_count" title="Permalink to this definition">¶</a></dt> |
@@ -628,7 +660,7 @@ <h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Pe |
628 | 660 | <script type="text/javascript"> |
629 | 661 | var DOCUMENTATION_OPTIONS = { |
630 | 662 | URL_ROOT:'./', |
631 | | - VERSION:'0.4.2', |
| 663 | + VERSION:'0.5.0', |
632 | 664 | COLLAPSE_INDEX:false, |
633 | 665 | FILE_SUFFIX:'.html', |
634 | 666 | HAS_SOURCE: true |
|
0 commit comments