Skip to content

Commit

Permalink
Deployed fd2b9ed with MkDocs version: 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
FBruzzesi committed May 10, 2024
1 parent 9e0dbfe commit 513bbd1
Show file tree
Hide file tree
Showing 14 changed files with 4,367 additions and 4,131 deletions.
800 changes: 455 additions & 345 deletions api/baseisoweek/index.html

Large diffs are not rendered by default.

1,577 changes: 848 additions & 729 deletions api/isoweek/index.html

Large diffs are not rendered by default.

977 changes: 533 additions & 444 deletions api/isoweekdate/index.html

Large diffs are not rendered by default.

1,654 changes: 777 additions & 877 deletions api/mixins/index.html

Large diffs are not rendered by default.

1,554 changes: 784 additions & 770 deletions api/pandas/index.html

Large diffs are not rendered by default.

1,433 changes: 708 additions & 725 deletions api/polars/index.html

Large diffs are not rendered by default.

449 changes: 232 additions & 217 deletions api/pydantic/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions img/coverage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -936,6 +936,7 @@ <h1 id="iso-week-date">ISO Week Date<a class="headerlink" href="#iso-week-date"
<ul>
<li><a href="https://fbruzzesi.github.io/iso-week-date/api/isoweek/"><code>IsoWeek</code></a> and <a href="https://fbruzzesi.github.io/iso-week-date/api/isoweekdate/"><code>IsoWeekDate</code></a> classes that implement a series of methods to work with ISO Week (Date) formats directly, avoiding the pitfalls of going back and forth between string, date and datetime python objects.</li>
<li><a href="https://fbruzzesi.github.io/iso-week-date/api/pandas/">pandas</a> and <a href="https://fbruzzesi.github.io/iso-week-date/api/polars/">polars</a> functionalities (and namespaces) to work with series of ISO Week dates.</li>
<li><a href="https://fbruzzesi.github.io/iso-week-date/user-guide/pydantic/">pydantic</a> compatible types, as described in their docs section on how to <a href="https://docs.pydantic.dev/latest/concepts/types/#customizing-validation-with-__get_pydantic_core_schema__">customize validation with <code>__get_pydantic_core_schema__</code></a></li>
</ul>
<hr />
<p><a href="https://fbruzzesi.github.io/iso-week-date/">Documentation</a> | <a href="https://github.com/fbruzzesi/iso-week-date/">Source Code</a> | <a href="https://github.com/fbruzzesi/iso-week-date/issues">Issue Tracker</a></p>
Expand Down
17 changes: 11 additions & 6 deletions installation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -967,17 +967,22 @@ <h2 id="dependencies">Dependencies<a class="headerlink" href="#dependencies" tit
<ul>
<li>To work with <code>IsoWeek</code> and <code>IsoWeekDate</code> classes, no additional dependencies are required.</li>
<li>
<p><em>pandas</em> and <em>polars</em> functionalities require the installation of the respective libraries.</p>
<div class="tabbed-set tabbed-alternate" data-tabs="2:2"><input checked="checked" id="__tabbed_2_1" name="__tabbed_2" type="radio" /><input id="__tabbed_2_2" name="__tabbed_2" type="radio" /><div class="tabbed-labels"><label for="__tabbed_2_1">pandas</label><label for="__tabbed_2_2">polars</label></div>
<p><em>pandas</em>, <em>polars</em> and/or <em>pydantic</em> functionalities require the installation of the respective libraries.</p>
<div class="tabbed-set tabbed-alternate" data-tabs="2:3"><input checked="checked" id="__tabbed_2_1" name="__tabbed_2" type="radio" /><input id="__tabbed_2_2" name="__tabbed_2" type="radio" /><input id="__tabbed_2_3" name="__tabbed_2" type="radio" /><div class="tabbed-labels"><label for="__tabbed_2_1">pandas</label><label for="__tabbed_2_2">polars</label><label for="__tabbed_2_3">pydantic</label></div>
<div class="tabbed-content">
<div class="tabbed-block">
<div class="highlight"><pre><span></span><code><a id="__codelineno-3-1" name="__codelineno-3-1" href="#__codelineno-3-1"></a>pip<span class="w"> </span>install<span class="w"> </span>pandas
<a id="__codelineno-3-2" name="__codelineno-3-2" href="#__codelineno-3-2"></a>pip<span class="w"> </span>install<span class="w"> </span>iso-week-date<span class="o">[</span>pandas<span class="o">]</span>
<div class="highlight"><pre><span></span><code><a id="__codelineno-3-1" name="__codelineno-3-1" href="#__codelineno-3-1"></a>python<span class="w"> </span>-m<span class="w"> </span>pip<span class="w"> </span>install<span class="w"> </span><span class="s2">&quot;pandas&gt;=1.0.0&quot;</span>
<a id="__codelineno-3-2" name="__codelineno-3-2" href="#__codelineno-3-2"></a>python<span class="w"> </span>-m<span class="w"> </span>pip<span class="w"> </span>install<span class="w"> </span><span class="s2">&quot;iso-week-date[pandas]&quot;</span>
</code></pre></div>
</div>
<div class="tabbed-block">
<div class="highlight"><pre><span></span><code><a id="__codelineno-4-1" name="__codelineno-4-1" href="#__codelineno-4-1"></a>pip<span class="w"> </span>install<span class="w"> </span>polars<span class="w"> </span><span class="c1"># polars&gt;=0.18.0</span>
<a id="__codelineno-4-2" name="__codelineno-4-2" href="#__codelineno-4-2"></a>pip<span class="w"> </span>install<span class="w"> </span>iso-week-date<span class="o">[</span>polars<span class="o">]</span>
<div class="highlight"><pre><span></span><code><a id="__codelineno-4-1" name="__codelineno-4-1" href="#__codelineno-4-1"></a>python<span class="w"> </span>pip<span class="w"> </span>install<span class="w"> </span><span class="s2">&quot;polars&gt;=0.18.0&quot;</span>
<a id="__codelineno-4-2" name="__codelineno-4-2" href="#__codelineno-4-2"></a>python<span class="w"> </span>pip<span class="w"> </span>install<span class="w"> </span><span class="s2">&quot;iso-week-date[polars]&quot;</span>
</code></pre></div>
</div>
<div class="tabbed-block">
<div class="highlight"><pre><span></span><code><a id="__codelineno-5-1" name="__codelineno-5-1" href="#__codelineno-5-1"></a>python<span class="w"> </span>pip<span class="w"> </span>install<span class="w"> </span><span class="s2">&quot;pydantic&gt;=2.4.0&quot;</span>
<a id="__codelineno-5-2" name="__codelineno-5-2" href="#__codelineno-5-2"></a>python<span class="w"> </span>pip<span class="w"> </span>install<span class="w"> </span><span class="s2">&quot;iso-week-date[pydantic]&quot;</span>
</code></pre></div>
</div>
</div>
Expand Down
Binary file modified objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,77 +2,77 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/contribute/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/installation/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/api/baseisoweek/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/api/isoweek/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/api/isoweekdate/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/api/mixins/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/api/pandas/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/api/polars/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/api/pydantic/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/user-guide/dataframe-modules/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/user-guide/features/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/user-guide/internals/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/user-guide/pydantic/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://fbruzzesi.github.io/iso-week-date/user-guide/quickstart/</loc>
<lastmod>2024-04-29</lastmod>
<lastmod>2024-05-10</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>
Binary file modified sitemap.xml.gz
Binary file not shown.

0 comments on commit 513bbd1

Please sign in to comment.