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.
- {python_examples-0.2.0 → python_examples-0.3.0}/PKG-INFO +10 -1
- {python_examples-0.2.0 → python_examples-0.3.0}/README.md +9 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/pyproject.toml +1 -1
- {python_examples-0.2.0 → python_examples-0.3.0}/python_examples.egg-info/PKG-INFO +10 -1
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/arrays/subsequence_conflict.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/matrices/utils.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/coin_run.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p0.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p1.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p2.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p48.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p49.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p50.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p51.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/p54.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/numerical_methods/euler/utils.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/slidingWindow/longestUnique.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/static_analysis/ast_tree.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/static_analysis/deduplicate_security_findings.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/static_analysis/package_dependency.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/static_analysis/rule_matcher.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/tensors/broadcast.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/tensors/kmeans.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/LICENSE +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/LLMs/torch_examples/batch_agg.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/LLMs/torch_examples/pooling.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/LLMs/torch_examples/shape_literacy.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/LLMs/xai.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/mixins/__init__.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/mixins/benchmark.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/mixins/logging.py +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/python_examples.egg-info/SOURCES.txt +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/python_examples.egg-info/dependency_links.txt +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/python_examples.egg-info/requires.txt +0 -0
- {python_examples-0.2.0 → python_examples-0.3.0}/python_examples.egg-info/top_level.txt +0 -0
- {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.
|
|
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.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-examples
|
|
3
|
-
Version: 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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_examples-0.2.0 → python_examples-0.3.0}/Algorithms/static_analysis/package_dependency.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_examples-0.2.0 → python_examples-0.3.0}/python_examples.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|