instructor-examples 0.2.1__tar.gz → 0.2.2__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 (30) hide show
  1. instructor_examples-0.2.2/CHANGELOG/0.2.2.md +3 -0
  2. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/PKG-INFO +6 -1
  3. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/README.md +5 -0
  4. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/pyproject.toml +1 -1
  5. instructor_examples-0.2.2/usage_of_instructor_examples.gif +0 -0
  6. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/uv.lock +1 -1
  7. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/.editorconfig +0 -0
  8. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/.github/ISSUE_TEMPLATE.md +0 -0
  9. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/.github/dependabot.yml +0 -0
  10. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/.github/workflows/ci.yml +0 -0
  11. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/.github/workflows/docs.yml +0 -0
  12. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/.github/workflows/publish.yml +0 -0
  13. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/.gitignore +0 -0
  14. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/CHANGELOG/0.1.0.md +0 -0
  15. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/CHANGELOG/0.2.1.md +0 -0
  16. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/CODE_OF_CONDUCT.md +0 -0
  17. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/CONTRIBUTING.md +0 -0
  18. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/HISTORY.md +0 -0
  19. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/LICENSE +0 -0
  20. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/docs/index.md +0 -0
  21. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/docs/installation.md +0 -0
  22. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/docs/usage.md +0 -0
  23. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/justfile +0 -0
  24. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/src/instructor_examples/__init__.py +0 -0
  25. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/src/instructor_examples/__main__.py +0 -0
  26. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/src/instructor_examples/cli.py +0 -0
  27. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/src/instructor_examples/py.typed +0 -0
  28. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/src/instructor_examples/utils.py +0 -0
  29. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/tests/test_instructor_examples.py +0 -0
  30. {instructor_examples-0.2.1 → instructor_examples-0.2.2}/zensical.toml +0 -0
@@ -0,0 +1,3 @@
1
+ # Release notes
2
+
3
+ Added a demo to the github page.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: instructor_examples
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Copy github examples to your local environment without needing to clone the entire repository.
5
5
  Project-URL: bugs, https://github.com/dgmouris/instructor_examples/issues
6
6
  Project-URL: changelog, https://github.com/dgmouris/instructor_examples/blob/main/HISTORY.md
@@ -63,6 +63,11 @@ Then they can run the following command to copy the examples for each lesson:
63
63
  instructor_examples example_folder_in_repo_url
64
64
  ```
65
65
 
66
+ ## Demo
67
+
68
+ ![](usage_of_instructor_examples.gif)
69
+
70
+
66
71
  ## Features
67
72
 
68
73
  Copies files and folders from GitHub to a local environment.
@@ -44,6 +44,11 @@ Then they can run the following command to copy the examples for each lesson:
44
44
  instructor_examples example_folder_in_repo_url
45
45
  ```
46
46
 
47
+ ## Demo
48
+
49
+ ![](usage_of_instructor_examples.gif)
50
+
51
+
47
52
  ## Features
48
53
 
49
54
  Copies files and folders from GitHub to a local environment.
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "instructor_examples"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Copy github examples to your local environment without needing to clone the entire repository."
9
9
  readme = "README.md"
10
10
  authors = [
@@ -247,7 +247,7 @@ wheels = [
247
247
 
248
248
  [[package]]
249
249
  name = "instructor-examples"
250
- version = "0.2.1"
250
+ version = "0.2.2"
251
251
  source = { editable = "." }
252
252
  dependencies = [
253
253
  { name = "requests" },