toolsos 0.2.2__tar.gz → 0.2.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. {toolsos-0.2.2 → toolsos-0.2.3}/PKG-INFO +2 -2
  2. {toolsos-0.2.2 → toolsos-0.2.3}/pyproject.toml +2 -2
  3. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/huisstijl/graphs/linegraph.py +11 -1
  4. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/huisstijl/graphs/piegraph.py +3 -0
  5. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos.egg-info/PKG-INFO +2 -2
  6. {toolsos-0.2.2 → toolsos-0.2.3}/README.md +0 -0
  7. {toolsos-0.2.2 → toolsos-0.2.3}/setup.cfg +0 -0
  8. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/__init__.py +0 -0
  9. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/cbs_tools.py +0 -0
  10. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/create_tables.py +0 -0
  11. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/database/database_connection.py +0 -0
  12. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/database/database_transfer.py +0 -0
  13. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/download.py +0 -0
  14. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/geo.py +0 -0
  15. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/helpers.py +0 -0
  16. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/huisstijl/__init__.py +0 -0
  17. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/huisstijl/colors.py +0 -0
  18. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/huisstijl/graphs/__init__.py +0 -0
  19. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/huisstijl/graphs/bargraph.py +0 -0
  20. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/huisstijl/graphs/graph_styles.py +0 -0
  21. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/huisstijl/graphs/styler.py +0 -0
  22. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/huisstijl/tables/__init__.py +0 -0
  23. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/huisstijl/tables/table_helpers.py +0 -0
  24. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/huisstijl/tables/table_styles.py +0 -0
  25. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/huisstijl/tables/tables.py +0 -0
  26. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos/polars_helpers.py +0 -0
  27. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos.egg-info/SOURCES.txt +0 -0
  28. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos.egg-info/dependency_links.txt +0 -0
  29. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos.egg-info/requires.txt +0 -0
  30. {toolsos-0.2.2 → toolsos-0.2.3}/src/toolsos.egg-info/top_level.txt +0 -0
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: toolsos
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: OS tools
5
5
  Author-email: OS <d.schmitz@amsterdam.nl>
6
6
  Keywords: tools,Onderzoek & Statistiek
7
7
  Classifier: License :: OSI Approved :: MIT License
8
8
  Classifier: Programming Language :: Python
9
9
  Classifier: Programming Language :: Python :: 3
10
- Requires-Python: >=3.11
10
+ Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
12
  Provides-Extra: dev
13
13
  Requires-Dist: black; extra == "dev"
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
 
7
7
  [project]
8
8
  name = "toolsos"
9
- version = "0.2.2"
9
+ version = "0.2.3"
10
10
  description = "OS tools"
11
11
  readme = "README.md"
12
12
  authors = [{ name = "OS", email = "d.schmitz@amsterdam.nl" }]
@@ -25,7 +25,7 @@ keywords = ["tools", "Onderzoek & Statistiek"]
25
25
  # use pip install "toolsos[all]" to pip install with al dependencies
26
26
 
27
27
  dependencies = []
28
- requires-python = ">=3.11"
28
+ requires-python = ">=3.10"
29
29
 
30
30
  [project.optional-dependencies]
31
31
  dev = [
@@ -5,7 +5,16 @@ from .styler import BaseStyle
5
5
  basestyle = BaseStyle()
6
6
 
7
7
 
8
- def line(data, x, y, color: None, width=750, height=490, **kwargs):
8
+ def line(
9
+ data,
10
+ x,
11
+ y,
12
+ color: None,
13
+ width=750,
14
+ height=490,
15
+ color_discrete_sequence=None,
16
+ **kwargs,
17
+ ):
9
18
  fig = px.line(
10
19
  data_frame=data,
11
20
  x=x,
@@ -13,6 +22,7 @@ def line(data, x, y, color: None, width=750, height=490, **kwargs):
13
22
  color=color,
14
23
  width=width,
15
24
  height=height,
25
+ color_discrete_sequence=color_discrete_sequence,
16
26
  template=BaseStyle().get_base_template(graph_type="line"),
17
27
  **kwargs,
18
28
  )
@@ -1,4 +1,5 @@
1
1
  import plotly.express as px
2
+
2
3
  from .styler import BaseStyle
3
4
 
4
5
  basestyle = BaseStyle()
@@ -12,6 +13,7 @@ def pie(
12
13
  width=750,
13
14
  height=490,
14
15
  text_format: str = None,
16
+ color_discrete_sequence=None,
15
17
  **kwargs,
16
18
  ):
17
19
  fig = px.pie(
@@ -22,6 +24,7 @@ def pie(
22
24
  height=height,
23
25
  hole=hole,
24
26
  template=BaseStyle().get_base_template(),
27
+ color_discrete_sequence=color_discrete_sequence,
25
28
  **kwargs,
26
29
  )
27
30
 
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: toolsos
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: OS tools
5
5
  Author-email: OS <d.schmitz@amsterdam.nl>
6
6
  Keywords: tools,Onderzoek & Statistiek
7
7
  Classifier: License :: OSI Approved :: MIT License
8
8
  Classifier: Programming Language :: Python
9
9
  Classifier: Programming Language :: Python :: 3
10
- Requires-Python: >=3.11
10
+ Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
12
  Provides-Extra: dev
13
13
  Requires-Dist: black; extra == "dev"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes