pytrendy 1.2.0.dev6__tar.gz → 1.3.0__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.
Files changed (24) hide show
  1. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/PKG-INFO +2 -2
  2. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/README.md +1 -1
  3. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pyproject.toml +1 -1
  4. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/LICENSE +0 -0
  5. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/__init__.py +0 -0
  6. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/detect_trends.py +0 -0
  7. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/io/__init__.py +0 -0
  8. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/io/data/classes_signals.csv +0 -0
  9. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/io/data/series_synthetic.csv +0 -0
  10. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/io/data_loader.py +0 -0
  11. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/io/plot_pytrendy.py +0 -0
  12. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/io/results_pytrendy.py +0 -0
  13. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/__init__.py +0 -0
  14. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_analyse.py +0 -0
  15. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_get.py +0 -0
  16. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/__init__.py +0 -0
  17. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/abrupt_shaving.py +0 -0
  18. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/artifact_cleanup.py +0 -0
  19. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/gradual_expand_contract.py +0 -0
  20. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/segment_grouping.py +0 -0
  21. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/trend_classify.py +0 -0
  22. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/post_processing/segments_refine/update_neighbours.py +0 -0
  23. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/process_signals.py +0 -0
  24. {pytrendy-1.2.0.dev6 → pytrendy-1.3.0}/pytrendy/simpledtw.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytrendy
3
- Version: 1.2.0.dev6
3
+ Version: 1.3.0
4
4
  Summary: Trend Detection in Python. Applicable for real-world industry use cases in time series.
5
5
  License: MIT License
6
6
 
@@ -151,6 +151,6 @@ results.filter_segments(direction='Up', sort_by='change_rank')[:3]
151
151
 
152
152
  For the full per-segment metrics table, use `results.df`.
153
153
 
154
- For more examples on interpreting the results, see [Gradual trend fundamentals](https://russellsb.github.io/pytrendy/main/examples/fundamentals/gradual/).
154
+ For more examples on interpreting the results, see [Detect Gradual Trends](https://russellsb.github.io/pytrendy/main/examples/fundamentals/gradual/).
155
155
 
156
156
 
@@ -88,5 +88,5 @@ results.filter_segments(direction='Up', sort_by='change_rank')[:3]
88
88
 
89
89
  For the full per-segment metrics table, use `results.df`.
90
90
 
91
- For more examples on interpreting the results, see [Gradual trend fundamentals](https://russellsb.github.io/pytrendy/main/examples/fundamentals/gradual/).
91
+ For more examples on interpreting the results, see [Detect Gradual Trends](https://russellsb.github.io/pytrendy/main/examples/fundamentals/gradual/).
92
92
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pytrendy"
3
- version = "1.2.0.dev6"
3
+ version = "1.3.0"
4
4
  description = "Trend Detection in Python. Applicable for real-world industry use cases in time series."
5
5
  authors = [
6
6
  { name = "Russell Sammut Bonnici", email = "r.sammutbonnici@gmail.com" },
File without changes