first commit

This commit is contained in:
Ayxan
2022-05-23 00:16:32 +04:00
commit d660f2a4ca
24786 changed files with 4428337 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
"""Interactive widgets for the Jupyter notebook.
Provide simple interactive controls in the notebook.
Each widget corresponds to an object in Python and Javascript,
with controls on the page.
You can display widgets with IPython's display machinery::
from ipywidgets import IntSlider
from IPython.display import display
slider = IntSlider(min=1, max=10)
display(slider)
Moving the slider will change the value. Most widgets have a current value,
accessible as a `value` attribute.
"""
from ._version import __version__
from warnings import warn
def _jupyter_nbextension_paths():
return [{
'section': 'notebook',
'src': 'static',
'dest': 'jupyter-js-widgets',
'require': 'jupyter-js-widgets/extension'
}]

View File

@@ -0,0 +1,6 @@
version_info = (3, 6, 0, 'final', 0)
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
__version__ = '%s.%s.%s%s'%(version_info[0], version_info[1], version_info[2],
'' if version_info[3]=='final' else _specifier_[version_info[3]]+str(version_info[4]))

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long