notebook-intelligence 0.8.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 (44) hide show
  1. notebook_intelligence-0.8.0/.copier-answers.yml +14 -0
  2. notebook_intelligence-0.8.0/.gitignore +122 -0
  3. notebook_intelligence-0.8.0/.prettierignore +6 -0
  4. notebook_intelligence-0.8.0/.yarnrc.yml +1 -0
  5. notebook_intelligence-0.8.0/CHANGELOG.md +5 -0
  6. notebook_intelligence-0.8.0/LICENSE +674 -0
  7. notebook_intelligence-0.8.0/PKG-INFO +810 -0
  8. notebook_intelligence-0.8.0/README.md +108 -0
  9. notebook_intelligence-0.8.0/RELEASE.md +80 -0
  10. notebook_intelligence-0.8.0/install.json +5 -0
  11. notebook_intelligence-0.8.0/jupyter-config/server-config/notebook_intelligence.json +7 -0
  12. notebook_intelligence-0.8.0/notebook_intelligence/__init__.py +39 -0
  13. notebook_intelligence-0.8.0/notebook_intelligence/_version.py +4 -0
  14. notebook_intelligence-0.8.0/notebook_intelligence/extension.py +398 -0
  15. notebook_intelligence-0.8.0/notebook_intelligence/extension_manager.py +132 -0
  16. notebook_intelligence-0.8.0/notebook_intelligence/github_copilot.py +461 -0
  17. notebook_intelligence-0.8.0/notebook_intelligence/github_copilot_prompts.py +145 -0
  18. notebook_intelligence-0.8.0/notebook_intelligence/handlers.py +351 -0
  19. notebook_intelligence-0.8.0/notebook_intelligence/labextension/package.json +222 -0
  20. notebook_intelligence-0.8.0/notebook_intelligence/labextension/schemas/@mbektas/notebook-intelligence/package.json.orig +217 -0
  21. notebook_intelligence-0.8.0/notebook_intelligence/labextension/schemas/@mbektas/notebook-intelligence/plugin.json +26 -0
  22. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/196.680d267244ae603cbcb2.js +1 -0
  23. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/199.814cdea2e81a14b62341.js +1 -0
  24. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/1b55f12eca93ba6743e7.ttf +0 -0
  25. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/325.b8294e18bcd1ef5a2b07.js +1 -0
  26. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/326.33ee84daa01497340049.js +2 -0
  27. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/326.33ee84daa01497340049.js.LICENSE.txt +10 -0
  28. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/327.d852fbf14a9b9cbf9f1b.js +2 -0
  29. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/327.d852fbf14a9b9cbf9f1b.js.LICENSE.txt +9 -0
  30. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/694.3c9b61494831b2ea4d24.js +1 -0
  31. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/728.51e14f99a4b4da601aa5.js +1 -0
  32. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/977.eabe7f4a9ed6de133552.js +1 -0
  33. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/editor.worker.js +2015 -0
  34. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/editor.worker.js.LICENSE.txt +60 -0
  35. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/remoteEntry.2da221b18760e1096bc7.js +1 -0
  36. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/style.js +4 -0
  37. notebook_intelligence-0.8.0/notebook_intelligence/labextension/static/third-party-licenses.json +1024 -0
  38. notebook_intelligence-0.8.0/package.json +217 -0
  39. notebook_intelligence-0.8.0/pyproject.toml +80 -0
  40. notebook_intelligence-0.8.0/schema/plugin.json +26 -0
  41. notebook_intelligence-0.8.0/setup.py +1 -0
  42. notebook_intelligence-0.8.0/tsconfig.json +23 -0
  43. notebook_intelligence-0.8.0/webpack.config.js +11 -0
  44. notebook_intelligence-0.8.0/yarn.lock +8328 -0
@@ -0,0 +1,14 @@
1
+ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2
+ _commit: v4.3.5
3
+ _src_path: https://github.com/jupyterlab/extension-template
4
+ author_email: mbektasgh@outlook.com
5
+ author_name: Mehmet Bektas
6
+ has_binder: false
7
+ has_settings: true
8
+ kind: server
9
+ labextension_name: '@mbektas/notebook-intelligence'
10
+ project_short_description: Notebook Intelligence extension for JupyterLab
11
+ python_name: notebook_intelligence
12
+ repository: https://github.com/mbektas/notebook-intelligence
13
+ test: false
14
+
@@ -0,0 +1,122 @@
1
+ *.bundle.*
2
+ lib/
3
+ node_modules/
4
+ *.log
5
+ .eslintcache
6
+ .stylelintcache
7
+ *.egg-info/
8
+ .ipynb_checkpoints
9
+ *.tsbuildinfo
10
+ notebook_intelligence/labextension
11
+ # Version file is handled by hatchling
12
+ notebook_intelligence/_version.py
13
+
14
+ # Created by https://www.gitignore.io/api/python
15
+ # Edit at https://www.gitignore.io/?templates=python
16
+
17
+ ### Python ###
18
+ # Byte-compiled / optimized / DLL files
19
+ __pycache__/
20
+ *.py[cod]
21
+ *$py.class
22
+
23
+ # C extensions
24
+ *.so
25
+
26
+ # Distribution / packaging
27
+ .Python
28
+ build/
29
+ develop-eggs/
30
+ dist/
31
+ downloads/
32
+ eggs/
33
+ .eggs/
34
+ lib/
35
+ lib64/
36
+ parts/
37
+ sdist/
38
+ var/
39
+ wheels/
40
+ pip-wheel-metadata/
41
+ share/python-wheels/
42
+ .installed.cfg
43
+ *.egg
44
+ MANIFEST
45
+
46
+ # PyInstaller
47
+ # Usually these files are written by a python script from a template
48
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
49
+ *.manifest
50
+ *.spec
51
+
52
+ # Installer logs
53
+ pip-log.txt
54
+ pip-delete-this-directory.txt
55
+
56
+ # Unit test / coverage reports
57
+ htmlcov/
58
+ .tox/
59
+ .nox/
60
+ .coverage
61
+ .coverage.*
62
+ .cache
63
+ nosetests.xml
64
+ coverage/
65
+ coverage.xml
66
+ *.cover
67
+ .hypothesis/
68
+ .pytest_cache/
69
+
70
+ # Translations
71
+ *.mo
72
+ *.pot
73
+
74
+ # Scrapy stuff:
75
+ .scrapy
76
+
77
+ # Sphinx documentation
78
+ docs/_build/
79
+
80
+ # PyBuilder
81
+ target/
82
+
83
+ # pyenv
84
+ .python-version
85
+
86
+ # celery beat schedule file
87
+ celerybeat-schedule
88
+
89
+ # SageMath parsed files
90
+ *.sage.py
91
+
92
+ # Spyder project settings
93
+ .spyderproject
94
+ .spyproject
95
+
96
+ # Rope project settings
97
+ .ropeproject
98
+
99
+ # Mr Developer
100
+ .mr.developer.cfg
101
+ .project
102
+ .pydevproject
103
+
104
+ # mkdocs documentation
105
+ /site
106
+
107
+ # mypy
108
+ .mypy_cache/
109
+ .dmypy.json
110
+ dmypy.json
111
+
112
+ # Pyre type checker
113
+ .pyre/
114
+
115
+ # End of https://www.gitignore.io/api/python
116
+
117
+ # OSX files
118
+ .DS_Store
119
+
120
+ # Yarn cache
121
+ .yarn/
122
+
@@ -0,0 +1,6 @@
1
+ node_modules
2
+ **/node_modules
3
+ **/lib
4
+ **/package.json
5
+ !/package.json
6
+ notebook_intelligence
@@ -0,0 +1 @@
1
+ nodeLinker: node-modules
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ <!-- <START NEW CHANGELOG ENTRY> -->
4
+
5
+ <!-- <END NEW CHANGELOG ENTRY> -->