virgo-modules 0.0.41__tar.gz → 0.0.42__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.

Potentially problematic release.


This version of virgo-modules might be problematic. Click here for more details.

@@ -1,19 +1,36 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: virgo_modules
3
- Version: 0.0.41
3
+ Version: 0.0.42
4
4
  Summary: data processing and statistical modeling using stock market data
5
5
  Home-page: https://github.com/miguelmayhem92/virgo_module
6
6
  Author: Miguel Mayhuire
7
7
  Author-email: miguelmayhem92@gmail.com
8
8
  License: MIT
9
- Platform: UNKNOWN
10
9
  Classifier: License :: OSI Approved :: MIT License
11
10
  Classifier: Programming Language :: Python :: 3.9
12
11
  Classifier: Operating System :: OS Independent
13
12
  Requires-Python: >=3.9, <3.10
14
13
  Description-Content-Type: text/markdown
15
- Provides-Extra: dev
16
14
  License-File: LICENSE
15
+ Requires-Dist: feature-engine==1.6.1
16
+ Requires-Dist: matplotlib==3.6.3
17
+ Requires-Dist: mlflow==2.1.1
18
+ Requires-Dist: numpy==1.23.5
19
+ Requires-Dist: optuna==3.1.0
20
+ Requires-Dist: pandas==1.5.3
21
+ Requires-Dist: plotly==5.15.0
22
+ Requires-Dist: rsa==4.9
23
+ Requires-Dist: scikit-learn==1.2.1
24
+ Requires-Dist: scipy==1.10.0
25
+ Requires-Dist: seaborn==0.12.2
26
+ Requires-Dist: starlette==0.22.0
27
+ Requires-Dist: statsmodels==0.13.5
28
+ Requires-Dist: ta==0.10.2
29
+ Requires-Dist: yfinance==0.2.9
30
+ Requires-Dist: hmmlearn==0.3.0
31
+ Requires-Dist: boto3
32
+ Provides-Extra: dev
33
+ Requires-Dist: pytest>=7.0; extra == "dev"
17
34
 
18
35
  # Virgo Package
19
36
 
@@ -34,4 +51,3 @@ obj = stock_eda_panel(stock_code = 'PEP', n_days = 20)
34
51
  obj.get_data()
35
52
  print(obj.df.shape)
36
53
  ```
37
-
@@ -5,7 +5,7 @@ with open("virgo_app/README.md", "r") as f:
5
5
 
6
6
  setup(
7
7
  name="virgo_modules",
8
- version="0.0.41",
8
+ version="0.0.42",
9
9
  description="data processing and statistical modeling using stock market data",
10
10
  package_dir={"": "virgo_app"},
11
11
  packages=find_packages(where="virgo_app"),
@@ -177,7 +177,12 @@ class stock_eda_panel(object):
177
177
  df['Date'] = pd.to_datetime(df['Date'])
178
178
 
179
179
  df = df[df.Date >= begin_date_str ]
180
- self.settings_general = {'n_days':self.n_days, 'begin_date':begin_date_str}
180
+ self.settings_general = {
181
+ 'n_days':self.n_days,
182
+ 'begin_date':begin_date_str,
183
+ 'data_window': self.data_window,
184
+ 'execution_date': self.today.strftime('%Y-%m-%d')
185
+ }
181
186
  self.df = df
182
187
 
183
188
  ### cleaning volume
@@ -226,8 +231,6 @@ class stock_eda_panel(object):
226
231
  df["lower"] = df['Close_roll_mean'] - df["Close_roll_std"]*2
227
232
 
228
233
  df = df[df.Date >= begin_date_str ]
229
- self.settings_general = {'n_days':self.n_days, 'begin_date':begin_date_str}
230
- self.df = df
231
234
 
232
235
  fig = make_subplots(rows=1, cols=1,vertical_spacing = 0.1,shared_xaxes=True,
233
236
  subplot_titles=(
@@ -1,19 +1,36 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: virgo-modules
3
- Version: 0.0.41
3
+ Version: 0.0.42
4
4
  Summary: data processing and statistical modeling using stock market data
5
5
  Home-page: https://github.com/miguelmayhem92/virgo_module
6
6
  Author: Miguel Mayhuire
7
7
  Author-email: miguelmayhem92@gmail.com
8
8
  License: MIT
9
- Platform: UNKNOWN
10
9
  Classifier: License :: OSI Approved :: MIT License
11
10
  Classifier: Programming Language :: Python :: 3.9
12
11
  Classifier: Operating System :: OS Independent
13
12
  Requires-Python: >=3.9, <3.10
14
13
  Description-Content-Type: text/markdown
15
- Provides-Extra: dev
16
14
  License-File: LICENSE
15
+ Requires-Dist: feature-engine==1.6.1
16
+ Requires-Dist: matplotlib==3.6.3
17
+ Requires-Dist: mlflow==2.1.1
18
+ Requires-Dist: numpy==1.23.5
19
+ Requires-Dist: optuna==3.1.0
20
+ Requires-Dist: pandas==1.5.3
21
+ Requires-Dist: plotly==5.15.0
22
+ Requires-Dist: rsa==4.9
23
+ Requires-Dist: scikit-learn==1.2.1
24
+ Requires-Dist: scipy==1.10.0
25
+ Requires-Dist: seaborn==0.12.2
26
+ Requires-Dist: starlette==0.22.0
27
+ Requires-Dist: statsmodels==0.13.5
28
+ Requires-Dist: ta==0.10.2
29
+ Requires-Dist: yfinance==0.2.9
30
+ Requires-Dist: hmmlearn==0.3.0
31
+ Requires-Dist: boto3
32
+ Provides-Extra: dev
33
+ Requires-Dist: pytest>=7.0; extra == "dev"
17
34
 
18
35
  # Virgo Package
19
36
 
@@ -34,4 +51,3 @@ obj = stock_eda_panel(stock_code = 'PEP', n_days = 20)
34
51
  obj.get_data()
35
52
  print(obj.df.shape)
36
53
  ```
37
-
File without changes
File without changes
File without changes