toolsos 0.2.5__tar.gz → 0.2.7__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 (31) hide show
  1. {toolsos-0.2.5 → toolsos-0.2.7}/PKG-INFO +2 -2
  2. {toolsos-0.2.5 → toolsos-0.2.7}/pyproject.toml +3 -3
  3. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/database/database_connection.py +1 -1
  4. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/geo.py +10 -5
  5. toolsos-0.2.7/src/toolsos/huisstijl/tables/__init__.py +0 -0
  6. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/huisstijl/tables/tables.py +13 -3
  7. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos.egg-info/PKG-INFO +2 -2
  8. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos.egg-info/SOURCES.txt +1 -0
  9. {toolsos-0.2.5 → toolsos-0.2.7}/README.md +0 -0
  10. {toolsos-0.2.5 → toolsos-0.2.7}/setup.cfg +0 -0
  11. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/__init__.py +0 -0
  12. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/cbs_tools.py +0 -0
  13. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/create_tables.py +0 -0
  14. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/database/database_transfer.py +0 -0
  15. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/download.py +0 -0
  16. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/helpers.py +0 -0
  17. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/huisstijl/__init__.py +0 -0
  18. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/huisstijl/colors.py +0 -0
  19. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/huisstijl/graphs/__init__.py +0 -0
  20. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/huisstijl/graphs/bargraph.py +0 -0
  21. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/huisstijl/graphs/graph_styles.py +0 -0
  22. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/huisstijl/graphs/linegraph.py +0 -0
  23. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/huisstijl/graphs/piegraph.py +0 -0
  24. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/huisstijl/graphs/styler.py +0 -0
  25. {toolsos-0.2.5/src/toolsos/huisstijl/tables → toolsos-0.2.7/src/toolsos/huisstijl/maps}/__init__.py +0 -0
  26. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/huisstijl/tables/table_helpers.py +0 -0
  27. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/huisstijl/tables/table_styles.py +0 -0
  28. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos/polars_helpers.py +0 -0
  29. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos.egg-info/dependency_links.txt +0 -0
  30. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos.egg-info/requires.txt +0 -0
  31. {toolsos-0.2.5 → toolsos-0.2.7}/src/toolsos.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: toolsos
3
- Version: 0.2.5
3
+ Version: 0.2.7
4
4
  Summary: OS tools
5
5
  Author-email: OS <d.schmitz@amsterdam.nl>
6
6
  Keywords: tools,Onderzoek & Statistiek
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
 
7
7
  [project]
8
8
  name = "toolsos"
9
- version = "0.2.5"
9
+ version = "0.2.7"
10
10
  description = "OS tools"
11
11
  readme = "README.md"
12
12
  authors = [{ name = "OS", email = "d.schmitz@amsterdam.nl" }]
@@ -49,5 +49,5 @@ all = [
49
49
  "sqlalchemy",
50
50
  ]
51
51
 
52
- #[project.urls]
53
- #Homepage = "https://github.com/realpython/reader"
52
+ # [project.urls]
53
+ #Homepage = ""
@@ -96,7 +96,7 @@ def get_azure_access_token():
96
96
  result = subprocess.run(command, capture_output=True, shell=True, text=True)
97
97
 
98
98
  try:
99
- json.loads(result.stdout)["accessToken"]
99
+ return json.loads(result.stdout)["accessToken"]
100
100
  except JSONDecodeError:
101
101
  subprocess.run("az login", shell=True)
102
102
 
@@ -17,15 +17,20 @@ def get_geo_json(
17
17
  Returns:
18
18
  dict[str, str]: geo json containg of the desired level and year
19
19
  """
20
- base_url = "https://gitlab.com/os-amsterdam/datavisualisatie-onderzoek-en-statistiek/-/raw/main/public/geo/"
20
+ base_url = "https://gitlab.com/os-amsterdam/datavisualisatie-onderzoek-en-statistiek/-/raw/main/public/geo"
21
+
22
+ if level not in ["buurten", "wijken", "gebieden", "stadsdelen"]:
23
+ raise ValueError(
24
+ "level should be 'buurten', 'wijken', 'gebieden' or 'stadsdelen'"
25
+ )
21
26
 
22
27
  if mra:
23
28
  level = f"{level}-mra"
24
- base_url = f"{base_url}mra/"
29
+ base_url = f"{base_url}/mra"
25
30
  else:
26
- base_url = f"{base_url}amsterdam/"
31
+ base_url = f"{base_url}/amsterdam"
27
32
 
28
- if (year <= 2020) & ~mra:
33
+ if (year <= 2020) and not mra:
29
34
  year = "2015-2020"
30
35
 
31
36
  if with_water:
@@ -33,8 +38,8 @@ def get_geo_json(
33
38
  else:
34
39
  url = f"{base_url}/{year}/{level}-{year}-zw-geo.json"
35
40
 
36
- print(url)
37
41
  json = requests.get(url).json()
42
+
38
43
  return json
39
44
 
40
45
 
File without changes
@@ -1,6 +1,7 @@
1
1
  import functools
2
2
  import json
3
3
  import re
4
+ import warnings
4
5
  from itertools import groupby
5
6
  from typing import Any, Callable, Dict
6
7
 
@@ -502,7 +503,8 @@ def write_table(
502
503
  blue_border: bool | None = True,
503
504
  blue_border_row_ids: int | list[int] | None = None,
504
505
  number_format: str = "0.0",
505
- autofit_columns: str | None = "column_names",
506
+ autofit_columns: str | None = None,
507
+ column_widths: list[int] | None = None,
506
508
  min_column_width: int | None = None,
507
509
  col_filter: bool | None = False,
508
510
  style: str = "old",
@@ -542,6 +544,7 @@ def write_table(
542
544
  blue_border_row_ids=blue_border_row_ids,
543
545
  number_format=number_format,
544
546
  autofit_columns=autofit_columns,
547
+ column_widths=column_widths,
545
548
  min_column_width=min_column_width,
546
549
  col_filter=col_filter,
547
550
  combine_multiindex=combine_multiindex,
@@ -590,7 +593,8 @@ def format_worksheet(
590
593
  blue_border: bool | None = True,
591
594
  blue_border_row_ids: int | list[int] | None = None,
592
595
  number_format: str = "0.0",
593
- autofit_columns: str | None = "column_names",
596
+ autofit_columns: str | None = None,
597
+ column_widths: list[int] | None = None,
594
598
  min_column_width: int | None = None,
595
599
  col_filter: bool | None = False,
596
600
  combine_multiindex: bool | int = False,
@@ -692,7 +696,13 @@ def format_worksheet(
692
696
  if combine_multiindex:
693
697
  cells_to_merge = get_cells_to_merge(df)
694
698
 
695
- if autofit_columns == "column_names":
699
+ if column_widths:
700
+ if len(arr[0]) != len(column_widths):
701
+ raise Warning(
702
+ "The number of widths defined in column_widths should be equal to the number of columsn in the dataframe"
703
+ )
704
+ col_widths = column_widths
705
+ elif (autofit_columns == "column_names") or (autofit_columns is None):
696
706
  col_widths = get_max_col_widths(df)
697
707
  elif autofit_columns == "all_data":
698
708
  col_widths = get_max_col_widths(arr)
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: toolsos
3
- Version: 0.2.5
3
+ Version: 0.2.7
4
4
  Summary: OS tools
5
5
  Author-email: OS <d.schmitz@amsterdam.nl>
6
6
  Keywords: tools,Onderzoek & Statistiek
@@ -22,6 +22,7 @@ src/toolsos/huisstijl/graphs/graph_styles.py
22
22
  src/toolsos/huisstijl/graphs/linegraph.py
23
23
  src/toolsos/huisstijl/graphs/piegraph.py
24
24
  src/toolsos/huisstijl/graphs/styler.py
25
+ src/toolsos/huisstijl/maps/__init__.py
25
26
  src/toolsos/huisstijl/tables/__init__.py
26
27
  src/toolsos/huisstijl/tables/table_helpers.py
27
28
  src/toolsos/huisstijl/tables/table_styles.py
File without changes
File without changes
File without changes
File without changes
File without changes