Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
bealdav committed Oct 16, 2024
1 parent 8744163 commit 749d647
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 1 deletion.
15 changes: 15 additions & 0 deletions sheet_dataframe_process/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,21 @@ Polars dataframe and process them according to rules in order to:
- obtain another dataframe with only the expected data to use in Odoo
- import data into Odoo TO IMPLEMENT

Why dataframe ?

- a dataframe is a kind of in-memory dataset on which you can operate
- you can operates on your entire dataset a bit like with a database
but in memory: you don't need to iterate on each line to perform
operations
- the operations are powerful: filter, add column resulting from
calculation , select a subset of data

Why Polars ?

- performance: code in rust
- environment consideration
- dynamic project

**Table of contents**

.. contents::
Expand Down
13 changes: 13 additions & 0 deletions sheet_dataframe_process/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,16 @@ Polars dataframe and process them according to rules in order to:
- display filtered data
- obtain another dataframe with only the expected data to use in Odoo
- import data into Odoo TO IMPLEMENT


Why dataframe ?

- a dataframe is a kind of in-memory dataset on which you can operate
- you can operates on your entire dataset a bit like with a database but in memory: you don't need to iterate on each line to perform operations
- the operations are powerful: filter, add column resulting from calculation , select a subset of data

Why Polars ?

- performance: code in rust
- environment consideration
- dynamic project
15 changes: 15 additions & 0 deletions sheet_dataframe_process/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,21 @@ <h1 class="title">Sheet Dataframe Process</h1>
<li>obtain another dataframe with only the expected data to use in Odoo</li>
<li>import data into Odoo TO IMPLEMENT</li>
</ul>
<p>Why dataframe ?</p>
<ul class="simple">
<li>a dataframe is a kind of in-memory dataset on which you can operate</li>
<li>you can operates on your entire dataset a bit like with a database
but in memory: you don’t need to iterate on each line to perform
operations</li>
<li>the operations are powerful: filter, add column resulting from
calculation , select a subset of data</li>
</ul>
<p>Why Polars ?</p>
<ul class="simple">
<li>performance: code in rust</li>
<li>environment consideration</li>
<li>dynamic project</li>
</ul>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
<ul class="simple">
Expand Down
2 changes: 1 addition & 1 deletion sheet_dataframe_process/views/file_config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/>
<!--
<button
name="% (sheet_dataframe_transient_action) d"
name="%(sheet_dataframe_transient_action)d"
type="action"
string="Import"
context="{'default_partner_id': partner_id}"
Expand Down

0 comments on commit 749d647

Please sign in to comment.