gitextract_krlmm29s/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── config.yml │ └── workflows/ │ ├── add-stars.yml │ ├── antispamm.yml │ ├── build.yml │ ├── stale.yml │ ├── welcome-new-users.yml │ └── wiki-on-edit.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── cpython.nimble ├── docs/ │ ├── atexit.html │ ├── base64.html │ ├── bgl.html │ ├── binascii.html │ ├── binhex.html │ ├── bl_math.html │ ├── blf.html │ ├── bpy_app_icons.html │ ├── bpy_app_timers.html │ ├── bpy_app_translations.html │ ├── bpy_msgbus.html │ ├── bpy_path.html │ ├── bpy_utils.html │ ├── bpy_utils_units.html │ ├── builtins.html │ ├── bz2.html │ ├── cmath.html │ ├── codecs.html │ ├── codeop.html │ ├── colorsys.html │ ├── compileall.html │ ├── copy.html │ ├── crypt.html │ ├── curses.html │ ├── dbd.html │ ├── decimal.html │ ├── dis.html │ ├── doctest.html │ ├── ensurepip.html │ ├── errno.html │ ├── faulthandler.html │ ├── fcntl.html │ ├── filecmp.html │ ├── fnmatch.html │ ├── gc.html │ ├── getopt.html │ ├── getpass.html │ ├── gettext.html │ ├── glob.html │ ├── grp.html │ ├── gzip.html │ ├── hashlib.html │ ├── hmac.html │ ├── html_entities.html │ ├── imghdr.html │ ├── imp.html │ ├── importlib.html │ ├── keyword.html │ ├── linecache.html │ ├── logging.html │ ├── lzma.html │ ├── marshal.html │ ├── math.html │ ├── mathutils_geometry.html │ ├── mathutils_noise.html │ ├── mimetypes.html │ ├── nimdoc.out.css │ ├── nis.html │ ├── ntpath.html │ ├── operator.html │ ├── os.html │ ├── pickle.html │ ├── pickletools.html │ ├── pkgutil.html │ ├── posixpath.html │ ├── pprint.html │ ├── pwd.html │ ├── py_compile.html │ ├── quopri.html │ ├── random.html │ ├── re.html │ ├── readline.html │ ├── reprlib.html │ ├── resource.html │ ├── runpy.html │ ├── secrets.html │ ├── shutil.html │ ├── signal.html │ ├── site.html │ ├── sndhdr.html │ ├── spwd.html │ ├── ssl.html │ ├── statistics.html │ ├── struct.html │ ├── subprocess.html │ ├── sys.html │ ├── sysconfig.html │ ├── syslog.html │ ├── tabnanny.html │ ├── tempfile.html │ ├── termios.html │ ├── textwrap.html │ ├── timeit.html │ ├── token.html │ ├── tty.html │ ├── turtle.html │ ├── typing.html │ ├── unicodedata.html │ ├── uu.html │ ├── uuid.html │ ├── venv.html │ ├── warnings.html │ ├── webbrowser.html │ ├── winsound.html │ ├── zipapp.html │ └── zlib.html ├── src/ │ └── cpython/ │ ├── atexit.nim │ ├── base64.nim │ ├── binascii.nim │ ├── binhex.nim │ ├── bisect.nim │ ├── builtins.nim │ ├── bz2.nim │ ├── calendar.nim │ ├── cmath.nim │ ├── codecs.nim │ ├── codeop.nim │ ├── colorsys.nim │ ├── compileall.nim │ ├── copy.nim │ ├── crypt.nim │ ├── curses.nim │ ├── dbd.nim │ ├── decimal.nim │ ├── dis.nim │ ├── doctest.nim │ ├── ensurepip.nim │ ├── errno.nim │ ├── faulthandler.nim │ ├── fcntl.nim │ ├── filecmp.nim │ ├── fnmatch.nim │ ├── gc.nim │ ├── getopt.nim │ ├── getpass.nim │ ├── gettext.nim │ ├── glob.nim │ ├── grp.nim │ ├── gzip.nim │ ├── hashlib.nim │ ├── hmac.nim │ ├── html_entities.nim │ ├── imghdr.nim │ ├── imp.nim │ ├── importlib.nim │ ├── keyword.nim │ ├── linecache.nim │ ├── logging.nim │ ├── lzma.nim │ ├── marshal.nim │ ├── math.nim │ ├── mimetypes.nim │ ├── nis.nim │ ├── ntpath.nim │ ├── operator.nim │ ├── os.nim │ ├── pickle.nim │ ├── pickletools.nim │ ├── pkgutil.nim │ ├── posixpath.nim │ ├── pprint.nim │ ├── pwd.nim │ ├── py_compile.nim │ ├── quopri.nim │ ├── random.nim │ ├── re.nim │ ├── readline.nim │ ├── reprlib.nim │ ├── resource.nim │ ├── runpy.nim │ ├── secrets.nim │ ├── shutil.nim │ ├── signal.nim │ ├── site.nim │ ├── sndhdr.nim │ ├── spwd.nim │ ├── ssl.nim │ ├── statistics.nim │ ├── stringprep.nim │ ├── strings.nim │ ├── struct.nim │ ├── subprocess.nim │ ├── sys.nim │ ├── sysconfig.nim │ ├── syslog.nim │ ├── tabnanny.nim │ ├── tempfile.nim │ ├── termios.nim │ ├── textwrap.nim │ ├── timeit.nim │ ├── token.nim │ ├── tomllib.nim │ ├── tty.nim │ ├── turtle.nim │ ├── typing.nim │ ├── unicodedata.nim │ ├── upbge/ │ │ ├── bge_render.nim │ │ ├── bgl.nim │ │ ├── bl_math.nim │ │ ├── blf.nim │ │ ├── bpy_app.nim │ │ ├── bpy_app_icons.nim │ │ ├── bpy_app_timers.nim │ │ ├── bpy_app_translations.nim │ │ ├── bpy_msgbus.nim │ │ ├── bpy_path.nim │ │ ├── bpy_utils.nim │ │ ├── bpy_utils_units.nim │ │ ├── gpu_capabilities.nim │ │ ├── gpu_extras.nim │ │ ├── gpu_platform.nim │ │ ├── gpu_select.nim │ │ ├── gpu_state.nim │ │ ├── imbuff.nim │ │ ├── mathutils_geometry.nim │ │ └── mathutils_noise.nim │ ├── uu.nim │ ├── uuid.nim │ ├── venv.nim │ ├── warnings.nim │ ├── webbrowser.nim │ ├── winsound.nim │ ├── zipapp.nim │ └── zlib.nim └── wiki_changelog_2022.md