keepa 1.3.11__py3-none-any.whl

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.
keepa/__init__.py ADDED
@@ -0,0 +1,38 @@
1
+ """Keepaapi module."""
2
+
3
+ __version__ = "1.3.11"
4
+ from keepa.data_models import ProductParams
5
+ from keepa.interface import (
6
+ DCODES,
7
+ KEEPA_ST_ORDINAL,
8
+ SCODES,
9
+ AsyncKeepa,
10
+ Domain,
11
+ Keepa,
12
+ convert_offer_history,
13
+ csv_indices,
14
+ format_items,
15
+ keepa_minutes_to_time,
16
+ parse_csv,
17
+ process_used_buybox,
18
+ run_and_get,
19
+ )
20
+ from keepa.plotting import plot_product
21
+
22
+ __all__ = [
23
+ "ProductParams",
24
+ "Domain",
25
+ "DCODES",
26
+ "KEEPA_ST_ORDINAL",
27
+ "SCODES",
28
+ "AsyncKeepa",
29
+ "Keepa",
30
+ "convert_offer_history",
31
+ "csv_indices",
32
+ "format_items",
33
+ "keepa_minutes_to_time",
34
+ "parse_csv",
35
+ "process_used_buybox",
36
+ "run_and_get",
37
+ "plot_product",
38
+ ]