diff --git a/jupyter/changelog.md b/jupyter/changelog.md index ea82699..ee98a0c 100644 --- a/jupyter/changelog.md +++ b/jupyter/changelog.md @@ -13,6 +13,10 @@ kernelspec: --- # CHANGELOG +## 0.15.0 (2023-3-24) +- Added dod_print, lol_order_by, lod_add_row methods. +- Added automatic documentation to the whole project. + ## 0.14.0 (2023-03-21) - Add method lod_remove_duplicates - Python>=3.9 is now required diff --git a/jupyter/lod.md b/jupyter/lod.md index b3cb6cb..203d1c7 100644 --- a/jupyter/lod.md +++ b/jupyter/lod.md @@ -49,6 +49,16 @@ lod.lod2dod(lod_,"b") ## lod2dod_tuple +```{code-cell} +:tags: [remove-input] + +from pydicts import lod +help(lod.lod2dod_tuple) +``` + + + + ## lod2list Converts a list of dictionaries (lod) to list using all values of key @@ -93,6 +103,13 @@ lod.lod2lol(lod_,["b","a"]) ## lod2lood +```{code-cell} +:tags: [remove-input] + +from pydicts import lod +help(lod.lod2lood) +``` + ## lod_average Calculates average from all values is the list of dictionaries with the key passed as parameter. @@ -281,5 +298,19 @@ lod_sum(lod,"a") ## lod_sum_negatives +```{code-cell} +:tags: [remove-input] + +from pydicts import lod +help(lod.lod_sum_negatives) +``` + ## lod_sum_positives +```{code-cell} +:tags: [remove-input] + +from pydicts import lod +help(lod.lod_sum_positives) +``` + diff --git a/pydicts/__init__.py b/pydicts/__init__.py index 2b1d7bc..7bd82e5 100644 --- a/pydicts/__init__.py +++ b/pydicts/__init__.py @@ -1,4 +1,4 @@ from datetime import datetime -__version__="0.14.0" -__versiondatetime__= datetime(2024, 3, 21, 7, 0) +__version__="0.15.0" +__versiondatetime__= datetime(2024, 3, 24, 9, 25) __versiondate__=__versiondatetime__.date() diff --git a/pydicts/locale/es.po b/pydicts/locale/es.po index a3daed0..991538b 100644 --- a/pydicts/locale/es.po +++ b/pydicts/locale/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: TooManyFiles\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-13 19:04+0100\n" +"POT-Creation-Date: 2024-03-24 09:37+0100\n" "PO-Revision-Date: 2020-04-03 08:54+0200\n" "Last-Translator: trabajo \n" "Language-Team: Spanish \n" @@ -40,6 +40,9 @@ msgstr "" msgid "I can't add a column with different size of lol" msgstr "No puedo añadir una columna con un tamaño diferente al lol" +msgid "I can't add a row with different size of the first row of the lol" +msgstr "" + msgid "I can't remove positions from a None list" msgstr "No puedo borrar posiciones de una lista que es None" @@ -57,4 +60,3 @@ msgstr "Sin datos que mostrar" msgid "This table continues in the next page" msgstr "Esta tabla continúa en la siguiente página" - diff --git a/pydicts/locale/pydicts.pot b/pydicts/locale/pydicts.pot index 85986d5..e6127d4 100644 --- a/pydicts/locale/pydicts.pot +++ b/pydicts/locale/pydicts.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-21 07:05+0100\n" +"POT-Creation-Date: 2024-03-24 09:37+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -38,6 +38,9 @@ msgstr "" msgid "I can't add a column with different size of lol" msgstr "" +msgid "I can't add a row with different size of the first row of the lol" +msgstr "" + msgid "I can't remove positions from a None list" msgstr "" diff --git a/pyproject.toml b/pyproject.toml index d4d9d06..6147fb4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pydicts" -version = "0.14.0" +version = "0.15.0" description = "Module to use dictionaries in various situations" authors = ["turulomio "] license = "GPL-3.0"