pyconvertu 1.0.2__tar.gz → 1.0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyconvertu
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: From/to Classification Converter
5
5
  Author-email: The Economist <29724411+econcz@users.noreply.github.com>
6
6
  License-Expression: MIT
@@ -29,7 +29,7 @@ pip install pyconvertu
29
29
  ## Quick example
30
30
  python:
31
31
  ```python
32
- from pyconvertu import convert
32
+ from convertu import convert
33
33
 
34
34
  print(convert(to="iso3", text=["Czech Republic", "Slovakia"]))
35
35
  ```
@@ -11,7 +11,7 @@ pip install pyconvertu
11
11
  ## Quick example
12
12
  python:
13
13
  ```python
14
- from pyconvertu import convert
14
+ from convertu import convert
15
15
 
16
16
  print(convert(to="iso3", text=["Czech Republic", "Slovakia"]))
17
17
  ```
@@ -1,4 +1,4 @@
1
- __version__ = "1.0.2"
1
+ __version__ = "1.0.3"
2
2
 
3
3
  from .convertu import convert
4
4
 
@@ -1,10 +1,10 @@
1
- from __future__ import annotations
1
+ from __future__ import annotations
2
2
  import signal
3
3
  import sys
4
4
  import argparse
5
- from pyconvertu import convert, __version__
6
- from typing import Any
7
- from json import dumps
5
+ from convertu import convert, __version__
6
+ from typing import Any
7
+ from json import dumps
8
8
 
9
9
  def _print_human_readable(obj: Any) -> None:
10
10
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyconvertu
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: From/to Classification Converter
5
5
  Author-email: The Economist <29724411+econcz@users.noreply.github.com>
6
6
  License-Expression: MIT
@@ -29,7 +29,7 @@ pip install pyconvertu
29
29
  ## Quick example
30
30
  python:
31
31
  ```python
32
- from pyconvertu import convert
32
+ from convertu import convert
33
33
 
34
34
  print(convert(to="iso3", text=["Czech Republic", "Slovakia"]))
35
35
  ```
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyconvertu"
3
- version = "1.0.2"
3
+ version = "1.0.3"
4
4
  description = "From/to Classification Converter"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
File without changes