virgo-modules 0.8.0__tar.gz → 0.8.1__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.

Files changed (27) hide show
  1. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/PKG-INFO +5 -15
  2. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/setup.py +1 -1
  3. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/aws_utils.py +1 -1
  4. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules.egg-info/PKG-INFO +6 -16
  5. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/LICENSE +0 -0
  6. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/README.md +0 -0
  7. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/setup.cfg +0 -0
  8. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/__init__.py +0 -0
  9. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/__init__.py +0 -0
  10. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/backtester.py +0 -0
  11. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/edge_utils/__init__.py +0 -0
  12. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/edge_utils/conformal_utils.py +0 -0
  13. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/edge_utils/edge_utils.py +0 -0
  14. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/edge_utils/feature_selection.py +0 -0
  15. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/edge_utils/shap_utils.py +0 -0
  16. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/edge_utils/stack_model.py +0 -0
  17. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/hmm_utils.py +0 -0
  18. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/market/__init__.py +0 -0
  19. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/market/market_tools.py +0 -0
  20. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/pull_artifacts.py +0 -0
  21. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/re_utils.py +0 -0
  22. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/ticketer_source.py +0 -0
  23. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules/src/transformer_utils.py +0 -0
  24. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules.egg-info/SOURCES.txt +0 -0
  25. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules.egg-info/dependency_links.txt +0 -0
  26. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules.egg-info/requires.txt +0 -0
  27. {virgo_modules-0.8.0 → virgo_modules-0.8.1}/virgo_app/virgo_modules.egg-info/top_level.txt +0 -0
@@ -1,30 +1,19 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.1
2
2
  Name: virgo_modules
3
- Version: 0.8.0
3
+ Version: 0.8.1
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
9
10
  Classifier: License :: OSI Approved :: MIT License
10
11
  Classifier: Programming Language :: Python :: 3.9
11
12
  Classifier: Operating System :: OS Independent
12
13
  Requires-Python: >=3.9
13
14
  Description-Content-Type: text/markdown
14
- License-File: LICENSE
15
15
  Provides-Extra: dev
16
- Requires-Dist: pytest>=7.0; extra == "dev"
17
- Dynamic: author
18
- Dynamic: author-email
19
- Dynamic: classifier
20
- Dynamic: description
21
- Dynamic: description-content-type
22
- Dynamic: home-page
23
- Dynamic: license
24
- Dynamic: license-file
25
- Dynamic: provides-extra
26
- Dynamic: requires-python
27
- Dynamic: summary
16
+ License-File: LICENSE
28
17
 
29
18
  # Virgo Package
30
19
 
@@ -45,3 +34,4 @@ obj = stock_eda_panel(stock_code = 'PEP', n_days = 20)
45
34
  obj.get_data()
46
35
  print(obj.df.shape)
47
36
  ```
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.8.0",
8
+ version="0.8.1",
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"),
@@ -63,5 +63,5 @@ def download_file_to_aws(bucket,key, aws_credentials):
63
63
  aws_secret_access_key = aws_credentials['AWS_SECRET_ACCESS_KEY']
64
64
  )
65
65
  obj = s3c.get_object(Bucket= bucket , Key = key)
66
- df = pd.read_csv(BytesIO(obj['Body'].read()), encoding='utf8')
66
+ df = pd.read_csv(BytesIO(obj['Body'].read()), encoding='utf8', sep = ';')
67
67
  return df
@@ -1,30 +1,19 @@
1
- Metadata-Version: 2.4
2
- Name: virgo_modules
3
- Version: 0.8.0
1
+ Metadata-Version: 2.1
2
+ Name: virgo-modules
3
+ Version: 0.8.1
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
9
10
  Classifier: License :: OSI Approved :: MIT License
10
11
  Classifier: Programming Language :: Python :: 3.9
11
12
  Classifier: Operating System :: OS Independent
12
13
  Requires-Python: >=3.9
13
14
  Description-Content-Type: text/markdown
14
- License-File: LICENSE
15
15
  Provides-Extra: dev
16
- Requires-Dist: pytest>=7.0; extra == "dev"
17
- Dynamic: author
18
- Dynamic: author-email
19
- Dynamic: classifier
20
- Dynamic: description
21
- Dynamic: description-content-type
22
- Dynamic: home-page
23
- Dynamic: license
24
- Dynamic: license-file
25
- Dynamic: provides-extra
26
- Dynamic: requires-python
27
- Dynamic: summary
16
+ License-File: LICENSE
28
17
 
29
18
  # Virgo Package
30
19
 
@@ -45,3 +34,4 @@ obj = stock_eda_panel(stock_code = 'PEP', n_days = 20)
45
34
  obj.get_data()
46
35
  print(obj.df.shape)
47
36
  ```
37
+
File without changes
File without changes
File without changes