GoekenDataScience 0.1.2__py3-none-any.whl → 0.1.7__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.
@@ -0,0 +1,3 @@
1
+ from .goekendatascience import TickerDataFetch, DataManipulation
2
+
3
+ __all__ = ["TickerDataFetch", "DataManipulation"]
@@ -13,6 +13,7 @@ class TickerDataFetch:
13
13
  self.output_folder = os.path.join(self.script_dir, "Historical Data")
14
14
 
15
15
  def folder_scan(self):
16
+ os.makedirs(self.output_folder, exist_ok=True)
16
17
  self.List = os.listdir(self.output_folder)
17
18
  self.namelist = {}
18
19
  for item in self.List:
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: GoekenDataScience
3
- Version: 0.1.2
4
- Summary: Python package for Goeken Data Science analytics
3
+ Version: 0.1.7
4
+ Summary: Python package for Goeken Data Science
5
5
  Author-email: Ryan Goeken <your@email.com>
6
6
  License: MIT
7
7
  Project-URL: Homepage, https://github.com/yourusername/GoekenStats
@@ -9,7 +9,7 @@ Requires-Python: >=3.7
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE.txt
11
11
  Requires-Dist: pandas>=2.0
12
- Requires-Dist: numpy>=1.26
12
+ Requires-Dist: numpy<2.0,>=1.26
13
13
  Requires-Dist: requests>=2.32
14
14
  Dynamic: license-file
15
15
 
@@ -19,4 +19,4 @@ A simple Python package for fetching and updating historical stock data from Alp
19
19
 
20
20
  ## Installation
21
21
  ```bash
22
- pip install GoekenStats
22
+ pip install GoekenDataScience
@@ -0,0 +1,7 @@
1
+ goekendatascience/__init__.py,sha256=j_tBPRvfa1A9Sm1ks-ukFR9pYkW5Tmk02ct6SiCqfe4,117
2
+ goekendatascience/goekendatascience.py,sha256=gtI1YH9u10N74US01vqfUI3pabVppl-LDJHZSFdcHGA,2845
3
+ goekendatascience-0.1.7.dist-info/licenses/LICENSE.txt,sha256=_1SdDE0mGZEIDtOGHP7Kgo-Bf9c27L5rQUwvU4mscCY,1089
4
+ goekendatascience-0.1.7.dist-info/METADATA,sha256=vz85FyZn_PDJc-oMQXpoQyEv9mJ5-tL5mkm_mqBJ4Yc,623
5
+ goekendatascience-0.1.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
6
+ goekendatascience-0.1.7.dist-info/top_level.txt,sha256=F-jZq2o9_m8Tk-sCJsB6PC6sMyNYAy1m-UduxikdyhU,18
7
+ goekendatascience-0.1.7.dist-info/RECORD,,
@@ -0,0 +1 @@
1
+ goekendatascience
@@ -1,7 +0,0 @@
1
- goekendatascience-0.1.2.dist-info/licenses/LICENSE.txt,sha256=_1SdDE0mGZEIDtOGHP7Kgo-Bf9c27L5rQUwvU4mscCY,1089
2
- goekenstats/__init__.py,sha256=9Gs18VBVL2qqWPozi6FUW1abnfih6Nrkhbs0_2MXLio,111
3
- goekenstats/goekenstats.py,sha256=XVFHshY-d0nkxgEHZBd5wuw31VZUXJKuax8I-OC-7uU,2789
4
- goekendatascience-0.1.2.dist-info/METADATA,sha256=tCkN7V_frIiijdX6zkAdSKFvM31ei7dEyAXn-uovNA4,622
5
- goekendatascience-0.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
6
- goekendatascience-0.1.2.dist-info/top_level.txt,sha256=fr5iok9jwn03JaaQILbL2aumQ5zGs8vgvI4v5sTHjCE,12
7
- goekendatascience-0.1.2.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- goekenstats
goekenstats/__init__.py DELETED
@@ -1,3 +0,0 @@
1
- from .GoekenStats import TickerDataFetch, DataManipulation
2
-
3
- __all__ = ["TickerDataFetch", "DataManipulation"]