python-examples 0.2.0__tar.gz → 0.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 (36) hide show
  1. {python_examples-0.2.0 → python_examples-0.3.0}/PKG-INFO +10 -1
  2. {python_examples-0.2.0 → python_examples-0.3.0}/README.md +9 -0
  3. {python_examples-0.2.0 → python_examples-0.3.0}/pyproject.toml +1 -1
  4. {python_examples-0.2.0 → python_examples-0.3.0}/python_examples.egg-info/PKG-INFO +10 -1
  5. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/arrays/subsequence_conflict.py +0 -0
  6. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/matrices/utils.py +0 -0
  7. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/coin_run.py +0 -0
  8. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p0.py +0 -0
  9. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p1.py +0 -0
  10. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p2.py +0 -0
  11. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p48.py +0 -0
  12. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p49.py +0 -0
  13. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p50.py +0 -0
  14. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p51.py +0 -0
  15. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p54.py +0 -0
  16. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/utils.py +0 -0
  17. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/slidingWindow/longestUnique.py +0 -0
  18. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/static_analysis/ast_tree.py +0 -0
  19. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/static_analysis/deduplicate_security_findings.py +0 -0
  20. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/static_analysis/package_dependency.py +0 -0
  21. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/static_analysis/rule_matcher.py +0 -0
  22. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/tensors/broadcast.py +0 -0
  23. {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/tensors/kmeans.py +0 -0
  24. {python_examples-0.2.0 → python_examples-0.3.0}/LICENSE +0 -0
  25. {python_examples-0.2.0 → python_examples-0.3.0}/LLMs/torch_examples/batch_agg.py +0 -0
  26. {python_examples-0.2.0 → python_examples-0.3.0}/LLMs/torch_examples/pooling.py +0 -0
  27. {python_examples-0.2.0 → python_examples-0.3.0}/LLMs/torch_examples/shape_literacy.py +0 -0
  28. {python_examples-0.2.0 → python_examples-0.3.0}/LLMs/xai.py +0 -0
  29. {python_examples-0.2.0 → python_examples-0.3.0}/mixins/__init__.py +0 -0
  30. {python_examples-0.2.0 → python_examples-0.3.0}/mixins/benchmark.py +0 -0
  31. {python_examples-0.2.0 → python_examples-0.3.0}/mixins/logging.py +0 -0
  32. {python_examples-0.2.0 → python_examples-0.3.0}/python_examples.egg-info/SOURCES.txt +0 -0
  33. {python_examples-0.2.0 → python_examples-0.3.0}/python_examples.egg-info/dependency_links.txt +0 -0
  34. {python_examples-0.2.0 → python_examples-0.3.0}/python_examples.egg-info/requires.txt +0 -0
  35. {python_examples-0.2.0 → python_examples-0.3.0}/python_examples.egg-info/top_level.txt +0 -0
  36. {python_examples-0.2.0 → python_examples-0.3.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-examples
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: Algorithms and systems examples repo
5
5
  Requires-Python: >=3.8
6
6
  Description-Content-Type: text/markdown
@@ -11,6 +11,15 @@ Dynamic: license-file
11
11
  # python examples
12
12
  Practice with Jupyter Notebook, Python, and Algorithms
13
13
 
14
+ ## Release flow
15
+
16
+ ```bash
17
+ git commit -am "Release v0.3.0"
18
+ git tag -a v0.3.0 -m "Release v0.3.0"
19
+ git push origin master
20
+ git push origin v0.3.0
21
+ ```
22
+
14
23
  #### Review
15
24
  * Python defines a default constructor in the class, which exists regardless of created constructor unlike Java.
16
25
  * Python has duck typing so it doesn't enforce type hints at runtime. It only cares about if the object has existing methods. Java is statically typed and enforces strict inheritance rules at compile time, so a parent object passed into an argument expecting a child class will raise a compile time error.
@@ -1,6 +1,15 @@
1
1
  # python examples
2
2
  Practice with Jupyter Notebook, Python, and Algorithms
3
3
 
4
+ ## Release flow
5
+
6
+ ```bash
7
+ git commit -am "Release v0.3.0"
8
+ git tag -a v0.3.0 -m "Release v0.3.0"
9
+ git push origin master
10
+ git push origin v0.3.0
11
+ ```
12
+
4
13
  #### Review
5
14
  * Python defines a default constructor in the class, which exists regardless of created constructor unlike Java.
6
15
  * Python has duck typing so it doesn't enforce type hints at runtime. It only cares about if the object has existing methods. Java is statically typed and enforces strict inheritance rules at compile time, so a parent object passed into an argument expecting a child class will raise a compile time error.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "python-examples"
7
- version = "0.2.0"
7
+ version = "0.3.0"
8
8
  description = "Algorithms and systems examples repo"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-examples
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: Algorithms and systems examples repo
5
5
  Requires-Python: >=3.8
6
6
  Description-Content-Type: text/markdown
@@ -11,6 +11,15 @@ Dynamic: license-file
11
11
  # python examples
12
12
  Practice with Jupyter Notebook, Python, and Algorithms
13
13
 
14
+ ## Release flow
15
+
16
+ ```bash
17
+ git commit -am "Release v0.3.0"
18
+ git tag -a v0.3.0 -m "Release v0.3.0"
19
+ git push origin master
20
+ git push origin v0.3.0
21
+ ```
22
+
14
23
  #### Review
15
24
  * Python defines a default constructor in the class, which exists regardless of created constructor unlike Java.
16
25
  * Python has duck typing so it doesn't enforce type hints at runtime. It only cares about if the object has existing methods. Java is statically typed and enforces strict inheritance rules at compile time, so a parent object passed into an argument expecting a child class will raise a compile time error.
File without changes