merge with main
This commit is contained in:
commit
f58d5cc357
51 changed files with 44 additions and 697956 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -187,5 +187,6 @@ resources/nextjs
|
|||
resources/fastapi
|
||||
|
||||
servers/nextjs/data
|
||||
servers/fastapi/build
|
||||
|
||||
dependencies
|
||||
|
|
|
|||
27
app/main.ts
27
app/main.ts
|
|
@ -1,13 +1,13 @@
|
|||
require("dotenv").config();
|
||||
import { app, BrowserWindow } from "electron";
|
||||
import path from "path";
|
||||
import { createUserConfig, findTwoUnusedPorts, killProcess } from "./utils";
|
||||
import { createUserConfig, findTwoUnusedPorts, killProcess, setupEnv } from "./utils";
|
||||
import { startFastApiServer, startNextJsServer } from "./servers";
|
||||
import { ChildProcessByStdio } from "child_process";
|
||||
import { localhost } from "./constants";
|
||||
|
||||
// var isDev = false;
|
||||
var isDev = !app.isPackaged;
|
||||
// var isDev = false;
|
||||
var baseDir = app.getAppPath();
|
||||
var fastapiDir = isDev ? path.join(baseDir, "servers/fastapi") : path.join(baseDir, "resources/fastapi");
|
||||
var nextjsDir = isDev ? path.join(baseDir, "servers/nextjs") : path.join(baseDir, "resources/nextjs");
|
||||
|
|
@ -20,8 +20,6 @@ var win: BrowserWindow | undefined;
|
|||
var fastApiProcess: ChildProcessByStdio<any, any, any> | undefined;
|
||||
var nextjsProcess: ChildProcessByStdio<any, any, any> | undefined;
|
||||
|
||||
|
||||
|
||||
const createWindow = () => {
|
||||
win = new BrowserWindow({
|
||||
webPreferences: {
|
||||
|
|
@ -35,12 +33,6 @@ const createWindow = () => {
|
|||
|
||||
async function startServers(fastApiPort: number, nextjsPort: number) {
|
||||
try {
|
||||
|
||||
process.env.NEXT_PUBLIC_FAST_API = `${localhost}:${fastApiPort}`;
|
||||
process.env.NEXT_PUBLIC_URL = `${localhost}:${nextjsPort}`;
|
||||
process.env.TEMP_DIRECTORY = tempDir;
|
||||
process.env.NEXT_PUBLIC_USER_CONFIG_PATH = userConfigPath;
|
||||
|
||||
fastApiProcess = await startFastApiServer(
|
||||
fastapiDir,
|
||||
fastApiPort,
|
||||
|
|
@ -54,18 +46,18 @@ async function startServers(fastApiPort: number, nextjsPort: number) {
|
|||
TEMP_DIRECTORY: tempDir,
|
||||
USER_CONFIG_PATH: userConfigPath,
|
||||
},
|
||||
isDev
|
||||
isDev,
|
||||
);
|
||||
nextjsProcess = await startNextJsServer(
|
||||
nextjsDir,
|
||||
nextjsPort,
|
||||
{
|
||||
NEXT_PUBLIC_FAST_API: `${localhost}:${fastApiPort}`,
|
||||
TEMP_DIRECTORY: tempDir,
|
||||
NEXT_PUBLIC_URL: `${localhost}:${nextjsPort}`,
|
||||
NEXT_PUBLIC_USER_CONFIG_PATH: userConfigPath,
|
||||
NEXT_PUBLIC_FAST_API: process.env.NEXT_PUBLIC_FAST_API,
|
||||
TEMP_DIRECTORY: process.env.TEMP_DIRECTORY,
|
||||
NEXT_PUBLIC_URL: process.env.NEXT_PUBLIC_URL,
|
||||
NEXT_PUBLIC_USER_CONFIG_PATH: process.env.NEXT_PUBLIC_USER_CONFIG_PATH,
|
||||
},
|
||||
isDev
|
||||
isDev,
|
||||
);
|
||||
} catch (error) {
|
||||
console.error("Server startup error:", error);
|
||||
|
|
@ -95,6 +87,9 @@ app.whenReady().then(async () => {
|
|||
const [fastApiPort, nextjsPort] = await findTwoUnusedPorts();
|
||||
console.log(`FastAPI port: ${fastApiPort}, NextJS port: ${nextjsPort}`);
|
||||
|
||||
//? Setup environment variables to be used in the preload.ts file
|
||||
setupEnv(app, fastApiPort, nextjsPort);
|
||||
|
||||
await startServers(fastApiPort, nextjsPort);
|
||||
win?.loadURL(`${localhost}:${nextjsPort}`);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ import { platform } from 'os'
|
|||
import type { App } from "electron"
|
||||
import fs from 'fs'
|
||||
import path from 'path'
|
||||
import { localhost } from './constants'
|
||||
|
||||
const execAsync = promisify(exec)
|
||||
|
||||
|
|
@ -29,6 +30,13 @@ export function createUserConfig(app: App, userConfig: UserConfig) {
|
|||
fs.writeFileSync(configPath, JSON.stringify(mergedConfig))
|
||||
}
|
||||
|
||||
export function setupEnv(app: App, fastApiPort: number, nextjsPort: number) {
|
||||
process.env.NEXT_PUBLIC_FAST_API = `${localhost}:${fastApiPort}`;
|
||||
process.env.NEXT_PUBLIC_URL = `${localhost}:${nextjsPort}`;
|
||||
process.env.TEMP_DIRECTORY = app.getPath("temp");
|
||||
process.env.NEXT_PUBLIC_USER_CONFIG_PATH = app.getPath("userData") + "/userConfig.json";
|
||||
}
|
||||
|
||||
|
||||
export function killProcess(pid: number) {
|
||||
return new Promise((resolve, reject) => {
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
"setup:env": "npm install && cd servers/fastapi && poetry install && cd ../../servers/nextjs && npm install",
|
||||
"build:ts": "tsc",
|
||||
"build:css": "tailwindcss -i ./resources/ui/assets/tailwind.import.css -o ./resources/ui/assets/tailwind.css",
|
||||
"build:nextjs": "rm -rf resources/nextjs && cp -r servers/nextjs resources/nextjs && cd resources/nextjs && npm install && npm run build",
|
||||
"build:nextjs": "rm -rf resources/nextjs && cp -r servers/nextjs resources/nextjs && cd resources/nextjs && npm install --omit=dev && npm run build",
|
||||
"build:fastapi": "rm -rf resources/fastapi && cd servers/fastapi && .venv/bin/pyinstaller --name fastapi --distpath ../../resources server.py",
|
||||
"build:electron": "tsc && node build.js",
|
||||
"clean:build": "rm -rf resources/nextjs && rm -rf resources/fastapi"
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,63 +0,0 @@
|
|||
('/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/fastapi',
|
||||
True,
|
||||
False,
|
||||
True,
|
||||
None,
|
||||
None,
|
||||
False,
|
||||
False,
|
||||
None,
|
||||
True,
|
||||
False,
|
||||
None,
|
||||
None,
|
||||
None,
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/fastapi.pkg',
|
||||
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||
('PYZ-00.pyz',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/localpycs/struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/localpycs/pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/localpycs/pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/localpycs/pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgres',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_setuptools',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_setuptools.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_cryptography_openssl',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_cryptography_openssl.py',
|
||||
'PYSOURCE'),
|
||||
('server',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/server.py',
|
||||
'PYSOURCE')],
|
||||
[],
|
||||
False,
|
||||
False,
|
||||
1746965123,
|
||||
[('run',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/bootloader/Linux-64bit-intel/run',
|
||||
'EXECUTABLE')],
|
||||
'/lib/x86_64-linux-gnu/libpython3.11.so.1.0')
|
||||
|
|
@ -1,58 +0,0 @@
|
|||
('/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/fastapi.pkg',
|
||||
{'BINARY': True,
|
||||
'DATA': True,
|
||||
'EXECUTABLE': True,
|
||||
'EXTENSION': True,
|
||||
'PYMODULE': True,
|
||||
'PYSOURCE': True,
|
||||
'PYZ': False,
|
||||
'SPLASH': True,
|
||||
'SYMLINK': False},
|
||||
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||
('PYZ-00.pyz',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/localpycs/struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/localpycs/pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/localpycs/pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/build/fastapi/localpycs/pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgres',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_setuptools',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_setuptools.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_cryptography_openssl',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/.venv/lib/python3.11/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_cryptography_openssl.py',
|
||||
'PYSOURCE'),
|
||||
('server',
|
||||
'/home/badu/workspace/badu/presenton/servers/fastapi/server.py',
|
||||
'PYSOURCE')],
|
||||
'libpython3.11.so.1.0',
|
||||
True,
|
||||
False,
|
||||
False,
|
||||
[],
|
||||
None,
|
||||
None,
|
||||
None)
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,188 +0,0 @@
|
|||
('/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/dist/fastapi_app',
|
||||
True,
|
||||
False,
|
||||
False,
|
||||
None,
|
||||
None,
|
||||
False,
|
||||
False,
|
||||
None,
|
||||
True,
|
||||
False,
|
||||
None,
|
||||
None,
|
||||
None,
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/fastapi_app.pkg',
|
||||
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||
('PYZ-00.pyz',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/localpycs/struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/localpycs/pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/localpycs/pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/localpycs/pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('server',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/server.py',
|
||||
'PYSOURCE'),
|
||||
('libpython3.11.so.1.0',
|
||||
'/lib/x86_64-linux-gnu/libpython3.11.so.1.0',
|
||||
'BINARY'),
|
||||
('lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/termios.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/termios.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/resource.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/resource.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_asyncio.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_asyncio.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('watchfiles/_rust_notify.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/watchfiles/_rust_notify.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('uvloop/loop.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvloop/loop.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_json.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_json.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('websockets/speedups.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/speedups.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/readline.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/readline.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('httptools/parser/parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/httptools/parser/parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('yaml/_yaml.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/_yaml.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('libexpat.so.1', '/lib/x86_64-linux-gnu/libexpat.so.1', 'BINARY'),
|
||||
('libz.so.1', '/lib/x86_64-linux-gnu/libz.so.1', 'BINARY'),
|
||||
('libcrypto.so.3', '/lib/x86_64-linux-gnu/libcrypto.so.3', 'BINARY'),
|
||||
('libssl.so.3', '/lib/x86_64-linux-gnu/libssl.so.3', 'BINARY'),
|
||||
('liblzma.so.5', '/lib/x86_64-linux-gnu/liblzma.so.5', 'BINARY'),
|
||||
('libbz2.so.1.0', '/lib/x86_64-linux-gnu/libbz2.so.1.0', 'BINARY'),
|
||||
('libffi.so.8', '/lib/x86_64-linux-gnu/libffi.so.8', 'BINARY'),
|
||||
('libgcc_s.so.1', '/lib/x86_64-linux-gnu/libgcc_s.so.1', 'BINARY'),
|
||||
('libuuid.so.1', '/lib/x86_64-linux-gnu/libuuid.so.1', 'BINARY'),
|
||||
('libreadline.so.8', '/lib/x86_64-linux-gnu/libreadline.so.8', 'BINARY'),
|
||||
('libtinfo.so.6', '/lib/x86_64-linux-gnu/libtinfo.so.6', 'BINARY'),
|
||||
('websockets-15.0.1.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/entry_points.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/entry_points.txt',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/LICENSE',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/LICENSE',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/top_level.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/top_level.txt',
|
||||
'DATA'),
|
||||
('base_library.zip',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/base_library.zip',
|
||||
'DATA')],
|
||||
[],
|
||||
False,
|
||||
False,
|
||||
1746717780,
|
||||
[('run',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/bootloader/Linux-64bit-intel/run',
|
||||
'EXECUTABLE')],
|
||||
'/lib/x86_64-linux-gnu/libpython3.11.so.1.0')
|
||||
|
|
@ -1,183 +0,0 @@
|
|||
('/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/fastapi_app.pkg',
|
||||
{'BINARY': True,
|
||||
'DATA': True,
|
||||
'EXECUTABLE': True,
|
||||
'EXTENSION': True,
|
||||
'PYMODULE': True,
|
||||
'PYSOURCE': True,
|
||||
'PYZ': False,
|
||||
'SPLASH': True,
|
||||
'SYMLINK': False},
|
||||
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||
('PYZ-00.pyz',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/localpycs/struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/localpycs/pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/localpycs/pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/localpycs/pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('server',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/server.py',
|
||||
'PYSOURCE'),
|
||||
('libpython3.11.so.1.0',
|
||||
'/lib/x86_64-linux-gnu/libpython3.11.so.1.0',
|
||||
'BINARY'),
|
||||
('lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/termios.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/termios.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/resource.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/resource.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_asyncio.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_asyncio.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('watchfiles/_rust_notify.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/watchfiles/_rust_notify.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('uvloop/loop.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvloop/loop.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_json.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_json.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('websockets/speedups.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/speedups.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/readline.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/readline.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('httptools/parser/parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/httptools/parser/parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('yaml/_yaml.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/_yaml.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('libexpat.so.1', '/lib/x86_64-linux-gnu/libexpat.so.1', 'BINARY'),
|
||||
('libz.so.1', '/lib/x86_64-linux-gnu/libz.so.1', 'BINARY'),
|
||||
('libcrypto.so.3', '/lib/x86_64-linux-gnu/libcrypto.so.3', 'BINARY'),
|
||||
('libssl.so.3', '/lib/x86_64-linux-gnu/libssl.so.3', 'BINARY'),
|
||||
('liblzma.so.5', '/lib/x86_64-linux-gnu/liblzma.so.5', 'BINARY'),
|
||||
('libbz2.so.1.0', '/lib/x86_64-linux-gnu/libbz2.so.1.0', 'BINARY'),
|
||||
('libffi.so.8', '/lib/x86_64-linux-gnu/libffi.so.8', 'BINARY'),
|
||||
('libgcc_s.so.1', '/lib/x86_64-linux-gnu/libgcc_s.so.1', 'BINARY'),
|
||||
('libuuid.so.1', '/lib/x86_64-linux-gnu/libuuid.so.1', 'BINARY'),
|
||||
('libreadline.so.8', '/lib/x86_64-linux-gnu/libreadline.so.8', 'BINARY'),
|
||||
('libtinfo.so.6', '/lib/x86_64-linux-gnu/libtinfo.so.6', 'BINARY'),
|
||||
('websockets-15.0.1.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/entry_points.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/entry_points.txt',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/LICENSE',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/LICENSE',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/top_level.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/top_level.txt',
|
||||
'DATA'),
|
||||
('base_library.zip',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/base_library.zip',
|
||||
'DATA')],
|
||||
'libpython3.11.so.1.0',
|
||||
False,
|
||||
False,
|
||||
False,
|
||||
[],
|
||||
None,
|
||||
None,
|
||||
None)
|
||||
Binary file not shown.
|
|
@ -1,925 +0,0 @@
|
|||
('/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/fastapi_app/PYZ-00.pyz',
|
||||
[('__future__', '/usr/lib/python3.11/__future__.py', 'PYMODULE'),
|
||||
('_compat_pickle', '/usr/lib/python3.11/_compat_pickle.py', 'PYMODULE'),
|
||||
('_compression', '/usr/lib/python3.11/_compression.py', 'PYMODULE'),
|
||||
('_py_abc', '/usr/lib/python3.11/_py_abc.py', 'PYMODULE'),
|
||||
('_pydecimal', '/usr/lib/python3.11/_pydecimal.py', 'PYMODULE'),
|
||||
('_strptime', '/usr/lib/python3.11/_strptime.py', 'PYMODULE'),
|
||||
('_threading_local', '/usr/lib/python3.11/_threading_local.py', 'PYMODULE'),
|
||||
('anyio',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/__init__.py',
|
||||
'PYMODULE'),
|
||||
('anyio._backends',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_backends/__init__.py',
|
||||
'PYMODULE'),
|
||||
('anyio._backends._asyncio',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_backends/_asyncio.py',
|
||||
'PYMODULE'),
|
||||
('anyio._backends._trio',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_backends/_trio.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/__init__.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._asyncio_selector_thread',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_asyncio_selector_thread.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._eventloop',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_eventloop.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._exceptions',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_exceptions.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._fileio',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_fileio.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._resources',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_resources.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._signals',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_signals.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._sockets',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_sockets.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._streams',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_streams.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._subprocesses',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_subprocesses.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._synchronization',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_synchronization.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._tasks',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_tasks.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._tempfile',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_tempfile.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._testing',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_testing.py',
|
||||
'PYMODULE'),
|
||||
('anyio._core._typedattr',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/_core/_typedattr.py',
|
||||
'PYMODULE'),
|
||||
('anyio.abc',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/abc/__init__.py',
|
||||
'PYMODULE'),
|
||||
('anyio.abc._eventloop',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/abc/_eventloop.py',
|
||||
'PYMODULE'),
|
||||
('anyio.abc._resources',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/abc/_resources.py',
|
||||
'PYMODULE'),
|
||||
('anyio.abc._sockets',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/abc/_sockets.py',
|
||||
'PYMODULE'),
|
||||
('anyio.abc._streams',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/abc/_streams.py',
|
||||
'PYMODULE'),
|
||||
('anyio.abc._subprocesses',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/abc/_subprocesses.py',
|
||||
'PYMODULE'),
|
||||
('anyio.abc._tasks',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/abc/_tasks.py',
|
||||
'PYMODULE'),
|
||||
('anyio.abc._testing',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/abc/_testing.py',
|
||||
'PYMODULE'),
|
||||
('anyio.from_thread',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/from_thread.py',
|
||||
'PYMODULE'),
|
||||
('anyio.lowlevel',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/lowlevel.py',
|
||||
'PYMODULE'),
|
||||
('anyio.streams',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/streams/__init__.py',
|
||||
'PYMODULE'),
|
||||
('anyio.streams.memory',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/streams/memory.py',
|
||||
'PYMODULE'),
|
||||
('anyio.streams.stapled',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/streams/stapled.py',
|
||||
'PYMODULE'),
|
||||
('anyio.streams.tls',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/streams/tls.py',
|
||||
'PYMODULE'),
|
||||
('anyio.to_thread',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/anyio/to_thread.py',
|
||||
'PYMODULE'),
|
||||
('argparse', '/usr/lib/python3.11/argparse.py', 'PYMODULE'),
|
||||
('ast', '/usr/lib/python3.11/ast.py', 'PYMODULE'),
|
||||
('asyncio', '/usr/lib/python3.11/asyncio/__init__.py', 'PYMODULE'),
|
||||
('asyncio.base_events',
|
||||
'/usr/lib/python3.11/asyncio/base_events.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.base_futures',
|
||||
'/usr/lib/python3.11/asyncio/base_futures.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.base_subprocess',
|
||||
'/usr/lib/python3.11/asyncio/base_subprocess.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.base_tasks',
|
||||
'/usr/lib/python3.11/asyncio/base_tasks.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.constants', '/usr/lib/python3.11/asyncio/constants.py', 'PYMODULE'),
|
||||
('asyncio.coroutines',
|
||||
'/usr/lib/python3.11/asyncio/coroutines.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.events', '/usr/lib/python3.11/asyncio/events.py', 'PYMODULE'),
|
||||
('asyncio.exceptions',
|
||||
'/usr/lib/python3.11/asyncio/exceptions.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.format_helpers',
|
||||
'/usr/lib/python3.11/asyncio/format_helpers.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.futures', '/usr/lib/python3.11/asyncio/futures.py', 'PYMODULE'),
|
||||
('asyncio.locks', '/usr/lib/python3.11/asyncio/locks.py', 'PYMODULE'),
|
||||
('asyncio.log', '/usr/lib/python3.11/asyncio/log.py', 'PYMODULE'),
|
||||
('asyncio.mixins', '/usr/lib/python3.11/asyncio/mixins.py', 'PYMODULE'),
|
||||
('asyncio.proactor_events',
|
||||
'/usr/lib/python3.11/asyncio/proactor_events.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.protocols', '/usr/lib/python3.11/asyncio/protocols.py', 'PYMODULE'),
|
||||
('asyncio.queues', '/usr/lib/python3.11/asyncio/queues.py', 'PYMODULE'),
|
||||
('asyncio.runners', '/usr/lib/python3.11/asyncio/runners.py', 'PYMODULE'),
|
||||
('asyncio.selector_events',
|
||||
'/usr/lib/python3.11/asyncio/selector_events.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.sslproto', '/usr/lib/python3.11/asyncio/sslproto.py', 'PYMODULE'),
|
||||
('asyncio.staggered', '/usr/lib/python3.11/asyncio/staggered.py', 'PYMODULE'),
|
||||
('asyncio.streams', '/usr/lib/python3.11/asyncio/streams.py', 'PYMODULE'),
|
||||
('asyncio.subprocess',
|
||||
'/usr/lib/python3.11/asyncio/subprocess.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.taskgroups',
|
||||
'/usr/lib/python3.11/asyncio/taskgroups.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.tasks', '/usr/lib/python3.11/asyncio/tasks.py', 'PYMODULE'),
|
||||
('asyncio.threads', '/usr/lib/python3.11/asyncio/threads.py', 'PYMODULE'),
|
||||
('asyncio.timeouts', '/usr/lib/python3.11/asyncio/timeouts.py', 'PYMODULE'),
|
||||
('asyncio.transports',
|
||||
'/usr/lib/python3.11/asyncio/transports.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.trsock', '/usr/lib/python3.11/asyncio/trsock.py', 'PYMODULE'),
|
||||
('asyncio.unix_events',
|
||||
'/usr/lib/python3.11/asyncio/unix_events.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.windows_events',
|
||||
'/usr/lib/python3.11/asyncio/windows_events.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.windows_utils',
|
||||
'/usr/lib/python3.11/asyncio/windows_utils.py',
|
||||
'PYMODULE'),
|
||||
('base64', '/usr/lib/python3.11/base64.py', 'PYMODULE'),
|
||||
('bisect', '/usr/lib/python3.11/bisect.py', 'PYMODULE'),
|
||||
('bz2', '/usr/lib/python3.11/bz2.py', 'PYMODULE'),
|
||||
('calendar', '/usr/lib/python3.11/calendar.py', 'PYMODULE'),
|
||||
('click',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/__init__.py',
|
||||
'PYMODULE'),
|
||||
('click._compat',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/_compat.py',
|
||||
'PYMODULE'),
|
||||
('click._termui_impl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/_termui_impl.py',
|
||||
'PYMODULE'),
|
||||
('click._textwrap',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/_textwrap.py',
|
||||
'PYMODULE'),
|
||||
('click._winconsole',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/_winconsole.py',
|
||||
'PYMODULE'),
|
||||
('click.core',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/core.py',
|
||||
'PYMODULE'),
|
||||
('click.decorators',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/decorators.py',
|
||||
'PYMODULE'),
|
||||
('click.exceptions',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/exceptions.py',
|
||||
'PYMODULE'),
|
||||
('click.formatting',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/formatting.py',
|
||||
'PYMODULE'),
|
||||
('click.globals',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/globals.py',
|
||||
'PYMODULE'),
|
||||
('click.parser',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/parser.py',
|
||||
'PYMODULE'),
|
||||
('click.shell_completion',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/shell_completion.py',
|
||||
'PYMODULE'),
|
||||
('click.termui',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/termui.py',
|
||||
'PYMODULE'),
|
||||
('click.types',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/types.py',
|
||||
'PYMODULE'),
|
||||
('click.utils',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/click/utils.py',
|
||||
'PYMODULE'),
|
||||
('concurrent', '/usr/lib/python3.11/concurrent/__init__.py', 'PYMODULE'),
|
||||
('concurrent.futures',
|
||||
'/usr/lib/python3.11/concurrent/futures/__init__.py',
|
||||
'PYMODULE'),
|
||||
('concurrent.futures._base',
|
||||
'/usr/lib/python3.11/concurrent/futures/_base.py',
|
||||
'PYMODULE'),
|
||||
('concurrent.futures.process',
|
||||
'/usr/lib/python3.11/concurrent/futures/process.py',
|
||||
'PYMODULE'),
|
||||
('concurrent.futures.thread',
|
||||
'/usr/lib/python3.11/concurrent/futures/thread.py',
|
||||
'PYMODULE'),
|
||||
('configparser', '/usr/lib/python3.11/configparser.py', 'PYMODULE'),
|
||||
('contextlib', '/usr/lib/python3.11/contextlib.py', 'PYMODULE'),
|
||||
('contextvars', '/usr/lib/python3.11/contextvars.py', 'PYMODULE'),
|
||||
('copy', '/usr/lib/python3.11/copy.py', 'PYMODULE'),
|
||||
('csv', '/usr/lib/python3.11/csv.py', 'PYMODULE'),
|
||||
('ctypes', '/usr/lib/python3.11/ctypes/__init__.py', 'PYMODULE'),
|
||||
('ctypes._endian', '/usr/lib/python3.11/ctypes/_endian.py', 'PYMODULE'),
|
||||
('ctypes.wintypes', '/usr/lib/python3.11/ctypes/wintypes.py', 'PYMODULE'),
|
||||
('dataclasses', '/usr/lib/python3.11/dataclasses.py', 'PYMODULE'),
|
||||
('datetime', '/usr/lib/python3.11/datetime.py', 'PYMODULE'),
|
||||
('decimal', '/usr/lib/python3.11/decimal.py', 'PYMODULE'),
|
||||
('difflib', '/usr/lib/python3.11/difflib.py', 'PYMODULE'),
|
||||
('dis', '/usr/lib/python3.11/dis.py', 'PYMODULE'),
|
||||
('dotenv',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/dotenv/__init__.py',
|
||||
'PYMODULE'),
|
||||
('dotenv.ipython',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/dotenv/ipython.py',
|
||||
'PYMODULE'),
|
||||
('dotenv.main',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/dotenv/main.py',
|
||||
'PYMODULE'),
|
||||
('dotenv.parser',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/dotenv/parser.py',
|
||||
'PYMODULE'),
|
||||
('dotenv.variables',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/dotenv/variables.py',
|
||||
'PYMODULE'),
|
||||
('email', '/usr/lib/python3.11/email/__init__.py', 'PYMODULE'),
|
||||
('email._encoded_words',
|
||||
'/usr/lib/python3.11/email/_encoded_words.py',
|
||||
'PYMODULE'),
|
||||
('email._header_value_parser',
|
||||
'/usr/lib/python3.11/email/_header_value_parser.py',
|
||||
'PYMODULE'),
|
||||
('email._parseaddr', '/usr/lib/python3.11/email/_parseaddr.py', 'PYMODULE'),
|
||||
('email._policybase', '/usr/lib/python3.11/email/_policybase.py', 'PYMODULE'),
|
||||
('email.base64mime', '/usr/lib/python3.11/email/base64mime.py', 'PYMODULE'),
|
||||
('email.charset', '/usr/lib/python3.11/email/charset.py', 'PYMODULE'),
|
||||
('email.contentmanager',
|
||||
'/usr/lib/python3.11/email/contentmanager.py',
|
||||
'PYMODULE'),
|
||||
('email.encoders', '/usr/lib/python3.11/email/encoders.py', 'PYMODULE'),
|
||||
('email.errors', '/usr/lib/python3.11/email/errors.py', 'PYMODULE'),
|
||||
('email.feedparser', '/usr/lib/python3.11/email/feedparser.py', 'PYMODULE'),
|
||||
('email.generator', '/usr/lib/python3.11/email/generator.py', 'PYMODULE'),
|
||||
('email.header', '/usr/lib/python3.11/email/header.py', 'PYMODULE'),
|
||||
('email.headerregistry',
|
||||
'/usr/lib/python3.11/email/headerregistry.py',
|
||||
'PYMODULE'),
|
||||
('email.iterators', '/usr/lib/python3.11/email/iterators.py', 'PYMODULE'),
|
||||
('email.message', '/usr/lib/python3.11/email/message.py', 'PYMODULE'),
|
||||
('email.parser', '/usr/lib/python3.11/email/parser.py', 'PYMODULE'),
|
||||
('email.policy', '/usr/lib/python3.11/email/policy.py', 'PYMODULE'),
|
||||
('email.quoprimime', '/usr/lib/python3.11/email/quoprimime.py', 'PYMODULE'),
|
||||
('email.utils', '/usr/lib/python3.11/email/utils.py', 'PYMODULE'),
|
||||
('fnmatch', '/usr/lib/python3.11/fnmatch.py', 'PYMODULE'),
|
||||
('fractions', '/usr/lib/python3.11/fractions.py', 'PYMODULE'),
|
||||
('ftplib', '/usr/lib/python3.11/ftplib.py', 'PYMODULE'),
|
||||
('getopt', '/usr/lib/python3.11/getopt.py', 'PYMODULE'),
|
||||
('getpass', '/usr/lib/python3.11/getpass.py', 'PYMODULE'),
|
||||
('gettext', '/usr/lib/python3.11/gettext.py', 'PYMODULE'),
|
||||
('glob', '/usr/lib/python3.11/glob.py', 'PYMODULE'),
|
||||
('gzip', '/usr/lib/python3.11/gzip.py', 'PYMODULE'),
|
||||
('h11',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/h11/__init__.py',
|
||||
'PYMODULE'),
|
||||
('h11._abnf',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/h11/_abnf.py',
|
||||
'PYMODULE'),
|
||||
('h11._connection',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/h11/_connection.py',
|
||||
'PYMODULE'),
|
||||
('h11._events',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/h11/_events.py',
|
||||
'PYMODULE'),
|
||||
('h11._headers',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/h11/_headers.py',
|
||||
'PYMODULE'),
|
||||
('h11._readers',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/h11/_readers.py',
|
||||
'PYMODULE'),
|
||||
('h11._receivebuffer',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/h11/_receivebuffer.py',
|
||||
'PYMODULE'),
|
||||
('h11._state',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/h11/_state.py',
|
||||
'PYMODULE'),
|
||||
('h11._util',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/h11/_util.py',
|
||||
'PYMODULE'),
|
||||
('h11._version',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/h11/_version.py',
|
||||
'PYMODULE'),
|
||||
('h11._writers',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/h11/_writers.py',
|
||||
'PYMODULE'),
|
||||
('hashlib', '/usr/lib/python3.11/hashlib.py', 'PYMODULE'),
|
||||
('hmac', '/usr/lib/python3.11/hmac.py', 'PYMODULE'),
|
||||
('http', '/usr/lib/python3.11/http/__init__.py', 'PYMODULE'),
|
||||
('http.client', '/usr/lib/python3.11/http/client.py', 'PYMODULE'),
|
||||
('http.cookiejar', '/usr/lib/python3.11/http/cookiejar.py', 'PYMODULE'),
|
||||
('httptools',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/httptools/__init__.py',
|
||||
'PYMODULE'),
|
||||
('httptools._version',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/httptools/_version.py',
|
||||
'PYMODULE'),
|
||||
('httptools.parser',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/httptools/parser/__init__.py',
|
||||
'PYMODULE'),
|
||||
('httptools.parser.errors',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/httptools/parser/errors.py',
|
||||
'PYMODULE'),
|
||||
('idna',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/idna/__init__.py',
|
||||
'PYMODULE'),
|
||||
('idna.core',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/idna/core.py',
|
||||
'PYMODULE'),
|
||||
('idna.idnadata',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/idna/idnadata.py',
|
||||
'PYMODULE'),
|
||||
('idna.intranges',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/idna/intranges.py',
|
||||
'PYMODULE'),
|
||||
('idna.package_data',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/idna/package_data.py',
|
||||
'PYMODULE'),
|
||||
('idna.uts46data',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/idna/uts46data.py',
|
||||
'PYMODULE'),
|
||||
('importlib', '/usr/lib/python3.11/importlib/__init__.py', 'PYMODULE'),
|
||||
('importlib._abc', '/usr/lib/python3.11/importlib/_abc.py', 'PYMODULE'),
|
||||
('importlib._bootstrap',
|
||||
'/usr/lib/python3.11/importlib/_bootstrap.py',
|
||||
'PYMODULE'),
|
||||
('importlib._bootstrap_external',
|
||||
'/usr/lib/python3.11/importlib/_bootstrap_external.py',
|
||||
'PYMODULE'),
|
||||
('importlib.abc', '/usr/lib/python3.11/importlib/abc.py', 'PYMODULE'),
|
||||
('importlib.machinery',
|
||||
'/usr/lib/python3.11/importlib/machinery.py',
|
||||
'PYMODULE'),
|
||||
('importlib.metadata',
|
||||
'/usr/lib/python3.11/importlib/metadata/__init__.py',
|
||||
'PYMODULE'),
|
||||
('importlib.metadata._adapters',
|
||||
'/usr/lib/python3.11/importlib/metadata/_adapters.py',
|
||||
'PYMODULE'),
|
||||
('importlib.metadata._collections',
|
||||
'/usr/lib/python3.11/importlib/metadata/_collections.py',
|
||||
'PYMODULE'),
|
||||
('importlib.metadata._functools',
|
||||
'/usr/lib/python3.11/importlib/metadata/_functools.py',
|
||||
'PYMODULE'),
|
||||
('importlib.metadata._itertools',
|
||||
'/usr/lib/python3.11/importlib/metadata/_itertools.py',
|
||||
'PYMODULE'),
|
||||
('importlib.metadata._meta',
|
||||
'/usr/lib/python3.11/importlib/metadata/_meta.py',
|
||||
'PYMODULE'),
|
||||
('importlib.metadata._text',
|
||||
'/usr/lib/python3.11/importlib/metadata/_text.py',
|
||||
'PYMODULE'),
|
||||
('importlib.readers', '/usr/lib/python3.11/importlib/readers.py', 'PYMODULE'),
|
||||
('importlib.resources',
|
||||
'/usr/lib/python3.11/importlib/resources/__init__.py',
|
||||
'PYMODULE'),
|
||||
('importlib.resources._adapters',
|
||||
'/usr/lib/python3.11/importlib/resources/_adapters.py',
|
||||
'PYMODULE'),
|
||||
('importlib.resources._common',
|
||||
'/usr/lib/python3.11/importlib/resources/_common.py',
|
||||
'PYMODULE'),
|
||||
('importlib.resources._itertools',
|
||||
'/usr/lib/python3.11/importlib/resources/_itertools.py',
|
||||
'PYMODULE'),
|
||||
('importlib.resources._legacy',
|
||||
'/usr/lib/python3.11/importlib/resources/_legacy.py',
|
||||
'PYMODULE'),
|
||||
('importlib.resources.abc',
|
||||
'/usr/lib/python3.11/importlib/resources/abc.py',
|
||||
'PYMODULE'),
|
||||
('importlib.resources.readers',
|
||||
'/usr/lib/python3.11/importlib/resources/readers.py',
|
||||
'PYMODULE'),
|
||||
('importlib.util', '/usr/lib/python3.11/importlib/util.py', 'PYMODULE'),
|
||||
('inspect', '/usr/lib/python3.11/inspect.py', 'PYMODULE'),
|
||||
('ipaddress', '/usr/lib/python3.11/ipaddress.py', 'PYMODULE'),
|
||||
('json', '/usr/lib/python3.11/json/__init__.py', 'PYMODULE'),
|
||||
('json.decoder', '/usr/lib/python3.11/json/decoder.py', 'PYMODULE'),
|
||||
('json.encoder', '/usr/lib/python3.11/json/encoder.py', 'PYMODULE'),
|
||||
('json.scanner', '/usr/lib/python3.11/json/scanner.py', 'PYMODULE'),
|
||||
('logging', '/usr/lib/python3.11/logging/__init__.py', 'PYMODULE'),
|
||||
('logging.config', '/usr/lib/python3.11/logging/config.py', 'PYMODULE'),
|
||||
('logging.handlers', '/usr/lib/python3.11/logging/handlers.py', 'PYMODULE'),
|
||||
('lzma', '/usr/lib/python3.11/lzma.py', 'PYMODULE'),
|
||||
('mimetypes', '/usr/lib/python3.11/mimetypes.py', 'PYMODULE'),
|
||||
('multiprocessing',
|
||||
'/usr/lib/python3.11/multiprocessing/__init__.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.connection',
|
||||
'/usr/lib/python3.11/multiprocessing/connection.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.context',
|
||||
'/usr/lib/python3.11/multiprocessing/context.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.dummy',
|
||||
'/usr/lib/python3.11/multiprocessing/dummy/__init__.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.dummy.connection',
|
||||
'/usr/lib/python3.11/multiprocessing/dummy/connection.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.forkserver',
|
||||
'/usr/lib/python3.11/multiprocessing/forkserver.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.heap',
|
||||
'/usr/lib/python3.11/multiprocessing/heap.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.managers',
|
||||
'/usr/lib/python3.11/multiprocessing/managers.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.pool',
|
||||
'/usr/lib/python3.11/multiprocessing/pool.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.popen_fork',
|
||||
'/usr/lib/python3.11/multiprocessing/popen_fork.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.popen_forkserver',
|
||||
'/usr/lib/python3.11/multiprocessing/popen_forkserver.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.popen_spawn_posix',
|
||||
'/usr/lib/python3.11/multiprocessing/popen_spawn_posix.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.popen_spawn_win32',
|
||||
'/usr/lib/python3.11/multiprocessing/popen_spawn_win32.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.process',
|
||||
'/usr/lib/python3.11/multiprocessing/process.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.queues',
|
||||
'/usr/lib/python3.11/multiprocessing/queues.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.reduction',
|
||||
'/usr/lib/python3.11/multiprocessing/reduction.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.resource_sharer',
|
||||
'/usr/lib/python3.11/multiprocessing/resource_sharer.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.resource_tracker',
|
||||
'/usr/lib/python3.11/multiprocessing/resource_tracker.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.shared_memory',
|
||||
'/usr/lib/python3.11/multiprocessing/shared_memory.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.sharedctypes',
|
||||
'/usr/lib/python3.11/multiprocessing/sharedctypes.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.spawn',
|
||||
'/usr/lib/python3.11/multiprocessing/spawn.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.synchronize',
|
||||
'/usr/lib/python3.11/multiprocessing/synchronize.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.util',
|
||||
'/usr/lib/python3.11/multiprocessing/util.py',
|
||||
'PYMODULE'),
|
||||
('netrc', '/usr/lib/python3.11/netrc.py', 'PYMODULE'),
|
||||
('nturl2path', '/usr/lib/python3.11/nturl2path.py', 'PYMODULE'),
|
||||
('numbers', '/usr/lib/python3.11/numbers.py', 'PYMODULE'),
|
||||
('opcode', '/usr/lib/python3.11/opcode.py', 'PYMODULE'),
|
||||
('pathlib', '/usr/lib/python3.11/pathlib.py', 'PYMODULE'),
|
||||
('pickle', '/usr/lib/python3.11/pickle.py', 'PYMODULE'),
|
||||
('pkgutil', '/usr/lib/python3.11/pkgutil.py', 'PYMODULE'),
|
||||
('platform', '/usr/lib/python3.11/platform.py', 'PYMODULE'),
|
||||
('pprint', '/usr/lib/python3.11/pprint.py', 'PYMODULE'),
|
||||
('py_compile', '/usr/lib/python3.11/py_compile.py', 'PYMODULE'),
|
||||
('queue', '/usr/lib/python3.11/queue.py', 'PYMODULE'),
|
||||
('quopri', '/usr/lib/python3.11/quopri.py', 'PYMODULE'),
|
||||
('random', '/usr/lib/python3.11/random.py', 'PYMODULE'),
|
||||
('runpy', '/usr/lib/python3.11/runpy.py', 'PYMODULE'),
|
||||
('secrets', '/usr/lib/python3.11/secrets.py', 'PYMODULE'),
|
||||
('selectors', '/usr/lib/python3.11/selectors.py', 'PYMODULE'),
|
||||
('shlex', '/usr/lib/python3.11/shlex.py', 'PYMODULE'),
|
||||
('shutil', '/usr/lib/python3.11/shutil.py', 'PYMODULE'),
|
||||
('signal', '/usr/lib/python3.11/signal.py', 'PYMODULE'),
|
||||
('smtplib', '/usr/lib/python3.11/smtplib.py', 'PYMODULE'),
|
||||
('sniffio',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/sniffio/__init__.py',
|
||||
'PYMODULE'),
|
||||
('sniffio._impl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/sniffio/_impl.py',
|
||||
'PYMODULE'),
|
||||
('sniffio._version',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/sniffio/_version.py',
|
||||
'PYMODULE'),
|
||||
('socket', '/usr/lib/python3.11/socket.py', 'PYMODULE'),
|
||||
('socketserver', '/usr/lib/python3.11/socketserver.py', 'PYMODULE'),
|
||||
('ssl', '/usr/lib/python3.11/ssl.py', 'PYMODULE'),
|
||||
('statistics', '/usr/lib/python3.11/statistics.py', 'PYMODULE'),
|
||||
('string', '/usr/lib/python3.11/string.py', 'PYMODULE'),
|
||||
('stringprep', '/usr/lib/python3.11/stringprep.py', 'PYMODULE'),
|
||||
('subprocess', '/usr/lib/python3.11/subprocess.py', 'PYMODULE'),
|
||||
('tarfile', '/usr/lib/python3.11/tarfile.py', 'PYMODULE'),
|
||||
('tempfile', '/usr/lib/python3.11/tempfile.py', 'PYMODULE'),
|
||||
('textwrap', '/usr/lib/python3.11/textwrap.py', 'PYMODULE'),
|
||||
('threading', '/usr/lib/python3.11/threading.py', 'PYMODULE'),
|
||||
('token', '/usr/lib/python3.11/token.py', 'PYMODULE'),
|
||||
('tokenize', '/usr/lib/python3.11/tokenize.py', 'PYMODULE'),
|
||||
('tracemalloc', '/usr/lib/python3.11/tracemalloc.py', 'PYMODULE'),
|
||||
('tty', '/usr/lib/python3.11/tty.py', 'PYMODULE'),
|
||||
('typing', '/usr/lib/python3.11/typing.py', 'PYMODULE'),
|
||||
('typing_extensions',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/typing_extensions.py',
|
||||
'PYMODULE'),
|
||||
('unittest', '/usr/lib/python3.11/unittest/__init__.py', 'PYMODULE'),
|
||||
('unittest._log', '/usr/lib/python3.11/unittest/_log.py', 'PYMODULE'),
|
||||
('unittest.async_case',
|
||||
'/usr/lib/python3.11/unittest/async_case.py',
|
||||
'PYMODULE'),
|
||||
('unittest.case', '/usr/lib/python3.11/unittest/case.py', 'PYMODULE'),
|
||||
('unittest.loader', '/usr/lib/python3.11/unittest/loader.py', 'PYMODULE'),
|
||||
('unittest.main', '/usr/lib/python3.11/unittest/main.py', 'PYMODULE'),
|
||||
('unittest.result', '/usr/lib/python3.11/unittest/result.py', 'PYMODULE'),
|
||||
('unittest.runner', '/usr/lib/python3.11/unittest/runner.py', 'PYMODULE'),
|
||||
('unittest.signals', '/usr/lib/python3.11/unittest/signals.py', 'PYMODULE'),
|
||||
('unittest.suite', '/usr/lib/python3.11/unittest/suite.py', 'PYMODULE'),
|
||||
('unittest.util', '/usr/lib/python3.11/unittest/util.py', 'PYMODULE'),
|
||||
('urllib', '/usr/lib/python3.11/urllib/__init__.py', 'PYMODULE'),
|
||||
('urllib.error', '/usr/lib/python3.11/urllib/error.py', 'PYMODULE'),
|
||||
('urllib.parse', '/usr/lib/python3.11/urllib/parse.py', 'PYMODULE'),
|
||||
('urllib.request', '/usr/lib/python3.11/urllib/request.py', 'PYMODULE'),
|
||||
('urllib.response', '/usr/lib/python3.11/urllib/response.py', 'PYMODULE'),
|
||||
('uuid', '/usr/lib/python3.11/uuid.py', 'PYMODULE'),
|
||||
('uvicorn',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/__init__.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.__main__',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/__main__.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn._subprocess',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/_subprocess.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn._types',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/_types.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.config',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/config.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.importer',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/importer.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.lifespan',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/lifespan/__init__.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.lifespan.off',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/lifespan/off.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.lifespan.on',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/lifespan/on.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.logging',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/logging.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.loops',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/loops/__init__.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.loops.asyncio',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/loops/asyncio.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.loops.auto',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/loops/auto.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.loops.uvloop',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/loops/uvloop.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.main',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/main.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.middleware',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/middleware/__init__.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.middleware.asgi2',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/middleware/asgi2.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.middleware.message_logger',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/middleware/message_logger.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.middleware.proxy_headers',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/middleware/proxy_headers.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.middleware.wsgi',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/middleware/wsgi.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.protocols',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/protocols/__init__.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.protocols.http',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/protocols/http/__init__.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.protocols.http.auto',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/protocols/http/auto.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.protocols.http.flow_control',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/protocols/http/flow_control.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.protocols.http.h11_impl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/protocols/http/h11_impl.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.protocols.http.httptools_impl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/protocols/http/httptools_impl.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.protocols.utils',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/protocols/utils.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.protocols.websockets',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/protocols/websockets/__init__.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.protocols.websockets.auto',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/protocols/websockets/auto.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.protocols.websockets.websockets_impl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/protocols/websockets/websockets_impl.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.protocols.websockets.wsproto_impl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/protocols/websockets/wsproto_impl.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.server',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/server.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.supervisors',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/supervisors/__init__.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.supervisors.basereload',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/supervisors/basereload.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.supervisors.multiprocess',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/supervisors/multiprocess.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.supervisors.statreload',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/supervisors/statreload.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.supervisors.watchfilesreload',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/supervisors/watchfilesreload.py',
|
||||
'PYMODULE'),
|
||||
('uvicorn.workers',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvicorn/workers.py',
|
||||
'PYMODULE'),
|
||||
('uvloop',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvloop/__init__.py',
|
||||
'PYMODULE'),
|
||||
('uvloop._noop',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvloop/_noop.py',
|
||||
'PYMODULE'),
|
||||
('uvloop._testbase',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvloop/_testbase.py',
|
||||
'PYMODULE'),
|
||||
('uvloop._version',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvloop/_version.py',
|
||||
'PYMODULE'),
|
||||
('uvloop.includes',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvloop/includes/__init__.py',
|
||||
'PYMODULE'),
|
||||
('watchfiles',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/watchfiles/__init__.py',
|
||||
'PYMODULE'),
|
||||
('watchfiles.filters',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/watchfiles/filters.py',
|
||||
'PYMODULE'),
|
||||
('watchfiles.main',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/watchfiles/main.py',
|
||||
'PYMODULE'),
|
||||
('watchfiles.run',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/watchfiles/run.py',
|
||||
'PYMODULE'),
|
||||
('watchfiles.version',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/watchfiles/version.py',
|
||||
'PYMODULE'),
|
||||
('webbrowser', '/usr/lib/python3.11/webbrowser.py', 'PYMODULE'),
|
||||
('websockets',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/__init__.py',
|
||||
'PYMODULE'),
|
||||
('websockets.__main__',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/__main__.py',
|
||||
'PYMODULE'),
|
||||
('websockets.asyncio',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/asyncio/__init__.py',
|
||||
'PYMODULE'),
|
||||
('websockets.asyncio.async_timeout',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/asyncio/async_timeout.py',
|
||||
'PYMODULE'),
|
||||
('websockets.asyncio.client',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/asyncio/client.py',
|
||||
'PYMODULE'),
|
||||
('websockets.asyncio.compatibility',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/asyncio/compatibility.py',
|
||||
'PYMODULE'),
|
||||
('websockets.asyncio.connection',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/asyncio/connection.py',
|
||||
'PYMODULE'),
|
||||
('websockets.asyncio.messages',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/asyncio/messages.py',
|
||||
'PYMODULE'),
|
||||
('websockets.asyncio.router',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/asyncio/router.py',
|
||||
'PYMODULE'),
|
||||
('websockets.asyncio.server',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/asyncio/server.py',
|
||||
'PYMODULE'),
|
||||
('websockets.auth',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/auth.py',
|
||||
'PYMODULE'),
|
||||
('websockets.cli',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/cli.py',
|
||||
'PYMODULE'),
|
||||
('websockets.client',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/client.py',
|
||||
'PYMODULE'),
|
||||
('websockets.connection',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/connection.py',
|
||||
'PYMODULE'),
|
||||
('websockets.datastructures',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/datastructures.py',
|
||||
'PYMODULE'),
|
||||
('websockets.exceptions',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/exceptions.py',
|
||||
'PYMODULE'),
|
||||
('websockets.extensions',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/extensions/__init__.py',
|
||||
'PYMODULE'),
|
||||
('websockets.extensions.base',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/extensions/base.py',
|
||||
'PYMODULE'),
|
||||
('websockets.extensions.permessage_deflate',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/extensions/permessage_deflate.py',
|
||||
'PYMODULE'),
|
||||
('websockets.frames',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/frames.py',
|
||||
'PYMODULE'),
|
||||
('websockets.headers',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/headers.py',
|
||||
'PYMODULE'),
|
||||
('websockets.http',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/http.py',
|
||||
'PYMODULE'),
|
||||
('websockets.http11',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/http11.py',
|
||||
'PYMODULE'),
|
||||
('websockets.imports',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/imports.py',
|
||||
'PYMODULE'),
|
||||
('websockets.legacy',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/legacy/__init__.py',
|
||||
'PYMODULE'),
|
||||
('websockets.legacy.auth',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/legacy/auth.py',
|
||||
'PYMODULE'),
|
||||
('websockets.legacy.client',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/legacy/client.py',
|
||||
'PYMODULE'),
|
||||
('websockets.legacy.exceptions',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/legacy/exceptions.py',
|
||||
'PYMODULE'),
|
||||
('websockets.legacy.framing',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/legacy/framing.py',
|
||||
'PYMODULE'),
|
||||
('websockets.legacy.handshake',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/legacy/handshake.py',
|
||||
'PYMODULE'),
|
||||
('websockets.legacy.http',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/legacy/http.py',
|
||||
'PYMODULE'),
|
||||
('websockets.legacy.protocol',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/legacy/protocol.py',
|
||||
'PYMODULE'),
|
||||
('websockets.legacy.server',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/legacy/server.py',
|
||||
'PYMODULE'),
|
||||
('websockets.protocol',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/protocol.py',
|
||||
'PYMODULE'),
|
||||
('websockets.server',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/server.py',
|
||||
'PYMODULE'),
|
||||
('websockets.streams',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/streams.py',
|
||||
'PYMODULE'),
|
||||
('websockets.sync',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/sync/__init__.py',
|
||||
'PYMODULE'),
|
||||
('websockets.sync.client',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/sync/client.py',
|
||||
'PYMODULE'),
|
||||
('websockets.sync.connection',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/sync/connection.py',
|
||||
'PYMODULE'),
|
||||
('websockets.sync.messages',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/sync/messages.py',
|
||||
'PYMODULE'),
|
||||
('websockets.sync.router',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/sync/router.py',
|
||||
'PYMODULE'),
|
||||
('websockets.sync.server',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/sync/server.py',
|
||||
'PYMODULE'),
|
||||
('websockets.sync.utils',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/sync/utils.py',
|
||||
'PYMODULE'),
|
||||
('websockets.typing',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/typing.py',
|
||||
'PYMODULE'),
|
||||
('websockets.uri',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/uri.py',
|
||||
'PYMODULE'),
|
||||
('websockets.utils',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/utils.py',
|
||||
'PYMODULE'),
|
||||
('websockets.version',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/version.py',
|
||||
'PYMODULE'),
|
||||
('xml', '/usr/lib/python3.11/xml/__init__.py', 'PYMODULE'),
|
||||
('xml.parsers', '/usr/lib/python3.11/xml/parsers/__init__.py', 'PYMODULE'),
|
||||
('xml.parsers.expat', '/usr/lib/python3.11/xml/parsers/expat.py', 'PYMODULE'),
|
||||
('xml.sax', '/usr/lib/python3.11/xml/sax/__init__.py', 'PYMODULE'),
|
||||
('xml.sax._exceptions',
|
||||
'/usr/lib/python3.11/xml/sax/_exceptions.py',
|
||||
'PYMODULE'),
|
||||
('xml.sax.expatreader',
|
||||
'/usr/lib/python3.11/xml/sax/expatreader.py',
|
||||
'PYMODULE'),
|
||||
('xml.sax.handler', '/usr/lib/python3.11/xml/sax/handler.py', 'PYMODULE'),
|
||||
('xml.sax.saxutils', '/usr/lib/python3.11/xml/sax/saxutils.py', 'PYMODULE'),
|
||||
('xml.sax.xmlreader', '/usr/lib/python3.11/xml/sax/xmlreader.py', 'PYMODULE'),
|
||||
('xmlrpc', '/usr/lib/python3.11/xmlrpc/__init__.py', 'PYMODULE'),
|
||||
('xmlrpc.client', '/usr/lib/python3.11/xmlrpc/client.py', 'PYMODULE'),
|
||||
('yaml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/__init__.py',
|
||||
'PYMODULE'),
|
||||
('yaml.composer',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/composer.py',
|
||||
'PYMODULE'),
|
||||
('yaml.constructor',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/constructor.py',
|
||||
'PYMODULE'),
|
||||
('yaml.cyaml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/cyaml.py',
|
||||
'PYMODULE'),
|
||||
('yaml.dumper',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/dumper.py',
|
||||
'PYMODULE'),
|
||||
('yaml.emitter',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/emitter.py',
|
||||
'PYMODULE'),
|
||||
('yaml.error',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/error.py',
|
||||
'PYMODULE'),
|
||||
('yaml.events',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/events.py',
|
||||
'PYMODULE'),
|
||||
('yaml.loader',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/loader.py',
|
||||
'PYMODULE'),
|
||||
('yaml.nodes',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/nodes.py',
|
||||
'PYMODULE'),
|
||||
('yaml.parser',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/parser.py',
|
||||
'PYMODULE'),
|
||||
('yaml.reader',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/reader.py',
|
||||
'PYMODULE'),
|
||||
('yaml.representer',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/representer.py',
|
||||
'PYMODULE'),
|
||||
('yaml.resolver',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/resolver.py',
|
||||
'PYMODULE'),
|
||||
('yaml.scanner',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/scanner.py',
|
||||
'PYMODULE'),
|
||||
('yaml.serializer',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/serializer.py',
|
||||
'PYMODULE'),
|
||||
('yaml.tokens',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/tokens.py',
|
||||
'PYMODULE'),
|
||||
('zipfile', '/usr/lib/python3.11/zipfile.py', 'PYMODULE'),
|
||||
('zipimport', '/usr/lib/python3.11/zipimport.py', 'PYMODULE')])
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,69 +0,0 @@
|
|||
|
||||
This file lists modules PyInstaller was not able to find. This does not
|
||||
necessarily mean this module is required for running your program. Python and
|
||||
Python 3rd-party packages include a lot of conditional or optional modules. For
|
||||
example the module 'ntpath' only exists on Windows, whereas the module
|
||||
'posixpath' only exists on Posix systems.
|
||||
|
||||
Types if import:
|
||||
* top-level: imported at the top-level - look at these first
|
||||
* conditional: imported within an if-statement
|
||||
* delayed: imported within a function
|
||||
* optional: imported within a try-except-statement
|
||||
|
||||
IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
|
||||
tracking down the missing module yourself. Thanks!
|
||||
|
||||
missing module named _winapi - imported by encodings (delayed, conditional, optional), ntpath (optional), subprocess (conditional), multiprocessing.connection (optional), multiprocessing.spawn (delayed, conditional), multiprocessing.reduction (conditional), multiprocessing.shared_memory (conditional), multiprocessing.heap (conditional), multiprocessing.popen_spawn_win32 (top-level), asyncio.windows_events (top-level), asyncio.windows_utils (top-level), mimetypes (optional)
|
||||
missing module named msvcrt - imported by subprocess (optional), multiprocessing.spawn (delayed, conditional), multiprocessing.popen_spawn_win32 (top-level), asyncio.windows_events (top-level), asyncio.windows_utils (top-level), click._winconsole (top-level), click._termui_impl (conditional), getpass (optional)
|
||||
missing module named winreg - imported by importlib._bootstrap_external (conditional), platform (delayed, optional), mimetypes (optional), urllib.request (delayed, conditional, optional)
|
||||
missing module named _scproxy - imported by urllib.request (conditional)
|
||||
missing module named 'org.python' - imported by copy (optional), xml.sax (delayed, conditional)
|
||||
missing module named 'java.lang' - imported by platform (delayed, optional), xml.sax._exceptions (conditional)
|
||||
missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||
missing module named multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
missing module named nt - imported by shutil (conditional), importlib._bootstrap_external (conditional), ntpath (optional), os (delayed, conditional, optional), ctypes (delayed, conditional)
|
||||
missing module named org - imported by pickle (optional)
|
||||
missing module named multiprocessing.get_context - imported by multiprocessing (top-level), multiprocessing.pool (top-level), multiprocessing.managers (top-level), multiprocessing.sharedctypes (top-level), watchfiles.run (top-level)
|
||||
missing module named multiprocessing.TimeoutError - imported by multiprocessing (top-level), multiprocessing.pool (top-level)
|
||||
missing module named multiprocessing.set_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level)
|
||||
missing module named multiprocessing.get_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level)
|
||||
missing module named multiprocessing.Pipe - imported by multiprocessing (top-level), uvicorn.supervisors.multiprocess (top-level)
|
||||
missing module named pyimod02_importers - imported by /home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py (delayed)
|
||||
missing module named 'gunicorn.workers' - imported by uvicorn.workers (top-level)
|
||||
missing module named gunicorn - imported by uvicorn.workers (top-level)
|
||||
missing module named _overlapped - imported by asyncio.windows_events (top-level)
|
||||
missing module named asyncio.DefaultEventLoopPolicy - imported by asyncio (delayed, conditional), asyncio.events (delayed, conditional)
|
||||
missing module named vms_lib - imported by platform (delayed, optional)
|
||||
missing module named java - imported by platform (delayed)
|
||||
missing module named _winreg - imported by platform (delayed, optional)
|
||||
missing module named 'trio.testing' - imported by anyio._backends._trio (delayed)
|
||||
missing module named exceptiongroup - imported by anyio._core._exceptions (conditional), anyio._core._sockets (conditional), anyio._backends._asyncio (conditional), anyio._backends._trio (conditional)
|
||||
missing module named _typeshed - imported by anyio.abc._eventloop (conditional), anyio._core._sockets (conditional), anyio._core._fileio (conditional), anyio._core._tempfile (conditional), anyio._backends._asyncio (conditional), anyio._core._asyncio_selector_thread (conditional), anyio._backends._trio (conditional)
|
||||
missing module named 'trio.to_thread' - imported by anyio._backends._trio (top-level)
|
||||
missing module named 'trio.socket' - imported by anyio._backends._trio (top-level)
|
||||
missing module named outcome - imported by anyio._backends._trio (top-level)
|
||||
missing module named 'trio.lowlevel' - imported by anyio._backends._trio (top-level)
|
||||
missing module named 'trio.from_thread' - imported by anyio._backends._trio (top-level)
|
||||
missing module named _pytest - imported by anyio._backends._asyncio (delayed)
|
||||
missing module named curio - imported by sniffio._impl (delayed, conditional)
|
||||
missing module named trio - imported by watchfiles.main (conditional)
|
||||
missing module named colorama - imported by click._compat (delayed, conditional)
|
||||
missing module named importlib_metadata - imported by click.decorators (delayed, conditional, optional)
|
||||
missing module named 'wsproto.utilities' - imported by uvicorn.protocols.websockets.wsproto_impl (top-level)
|
||||
missing module named 'wsproto.extensions' - imported by uvicorn.protocols.websockets.wsproto_impl (top-level)
|
||||
missing module named 'wsproto.connection' - imported by uvicorn.protocols.websockets.wsproto_impl (top-level)
|
||||
missing module named wsproto - imported by uvicorn.protocols.websockets.wsproto_impl (top-level), uvicorn.protocols.websockets.auto (optional)
|
||||
missing module named 'werkzeug.routing' - imported by websockets.asyncio.router (top-level), websockets.sync.router (top-level)
|
||||
missing module named 'werkzeug.exceptions' - imported by websockets.sync.router (top-level)
|
||||
missing module named 'python_socks.sync' - imported by websockets.sync.client (optional)
|
||||
missing module named python_socks - imported by websockets.asyncio.client (optional), websockets.sync.client (optional)
|
||||
missing module named werkzeug - imported by websockets.asyncio.router (top-level)
|
||||
missing module named 'python_socks.async_' - imported by websockets.asyncio.client (optional)
|
||||
missing module named a2wsgi - imported by uvicorn.middleware.wsgi (optional)
|
||||
missing module named 'IPython.core' - imported by dotenv.ipython (top-level)
|
||||
missing module named IPython - imported by dotenv.ipython (top-level)
|
||||
missing module named win32evtlog - imported by logging.handlers (delayed, optional)
|
||||
missing module named win32evtlogutil - imported by logging.handlers (delayed, optional)
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,780 +0,0 @@
|
|||
([('server',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/server',
|
||||
'EXECUTABLE'),
|
||||
('libpython3.11.so.1.0',
|
||||
'/lib/x86_64-linux-gnu/libpython3.11.so.1.0',
|
||||
'BINARY'),
|
||||
('lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_typing.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_contextvars.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_decimal.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_hashlib.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_ctypes.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_ssl.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_queue.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/mmap.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_posixshmem.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/resource.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/resource.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_lzma.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_bz2.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_multiprocessing.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/termios.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/termios.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_asyncio.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_asyncio.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('markupsafe/_speedups.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/markupsafe/_speedups.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_json.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_json.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/readline.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/readline.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_multibytecodec.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_jp.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_kr.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_iso2022.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_cn.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_tw.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_codecs_hk.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('sqlalchemy/cyextension/resultproxy.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/sqlalchemy/cyextension/resultproxy.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('sqlalchemy/cyextension/util.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/sqlalchemy/cyextension/util.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('sqlalchemy/cyextension/processors.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/sqlalchemy/cyextension/processors.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('sqlalchemy/cyextension/immutabledict.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/sqlalchemy/cyextension/immutabledict.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('sqlalchemy/cyextension/collections.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/sqlalchemy/cyextension/collections.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('greenlet/_greenlet.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/greenlet/_greenlet.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_uuid.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_sqlite3.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_sqlite3.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('uvloop/loop.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/uvloop/loop.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('PIL/_imagingft.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PIL/_imagingft.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('PIL/_imaging.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PIL/_imaging.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/_core/_multiarray_tests.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/_core/_multiarray_tests.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/_core/_multiarray_umath.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/_core/_multiarray_umath.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer/md__mypyc.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/charset_normalizer/md__mypyc.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('charset_normalizer/md.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/charset_normalizer/md.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/linalg/_umath_linalg.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/linalg/_umath_linalg.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/random/mtrand.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/random/mtrand.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/random/_sfc64.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/random/_sfc64.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/random/_philox.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/random/_philox.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/random/_pcg64.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/random/_pcg64.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/random/_mt19937.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/random/_mt19937.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/random/bit_generator.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/random/bit_generator.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/random/_generator.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/random/_generator.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/random/_bounded_integers.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/random/_bounded_integers.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/random/_common.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/random/_common.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('numpy/fft/_pocketfft_umath.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy/fft/_pocketfft_umath.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('yaml/_yaml.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yaml/_yaml.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('PIL/_webp.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PIL/_webp.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('PIL/_imagingtk.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PIL/_imagingtk.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('PIL/_imagingcms.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PIL/_imagingcms.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('PIL/_imagingmath.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PIL/_imagingmath.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('pydantic_core/_pydantic_core.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pydantic_core/_pydantic_core.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lib-dynload/_zoneinfo.cpython-311-x86_64-linux-gnu.so',
|
||||
'/usr/lib/python3.11/lib-dynload/_zoneinfo.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('websockets/speedups.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets/speedups.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('jiter/jiter.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/jiter/jiter.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('zstandard/_cffi.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/zstandard/_cffi.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('zstandard/backend_c.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/zstandard/backend_c.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('orjson/orjson.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/orjson/orjson.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('yarl/_quoting_c.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/yarl/_quoting_c.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('propcache/_helpers_c.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/propcache/_helpers_c.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('multidict/_multidict.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/multidict/_multidict.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('aiohttp/_http_writer.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/aiohttp/_http_writer.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('aiohttp/_http_parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/aiohttp/_http_parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('frozenlist/_frozenlist.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/frozenlist/_frozenlist.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('aiohttp/_websocket/mask.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/aiohttp/_websocket/mask.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('aiohttp/_websocket/reader_c.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/aiohttp/_websocket/reader_c.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lxml/etree.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/etree.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lxml/_elementpath.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/_elementpath.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lxml/sax.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/sax.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lxml/objectify.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/objectify.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lxml/html/diff.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/html/diff.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('lxml/builder.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/builder.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('pymupdf/_mupdf.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pymupdf/_mupdf.so',
|
||||
'EXTENSION'),
|
||||
('pymupdf/_extra.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pymupdf/_extra.so',
|
||||
'EXTENSION'),
|
||||
('regex/_regex.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/regex/_regex.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('tiktoken/_tiktoken.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/tiktoken/_tiktoken.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('google/_upb/_message.abi3.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/google/_upb/_message.abi3.so',
|
||||
'EXTENSION'),
|
||||
('grpc/_cython/cygrpc.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/grpc/_cython/cygrpc.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('watchfiles/_rust_notify.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/watchfiles/_rust_notify.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('httptools/parser/parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/httptools/parser/parser.cpython-311-x86_64-linux-gnu.so',
|
||||
'EXTENSION'),
|
||||
('libz.so.1', '/lib/x86_64-linux-gnu/libz.so.1', 'BINARY'),
|
||||
('libexpat.so.1', '/lib/x86_64-linux-gnu/libexpat.so.1', 'BINARY'),
|
||||
('libcrypto.so.3', '/lib/x86_64-linux-gnu/libcrypto.so.3', 'BINARY'),
|
||||
('libffi.so.8', '/lib/x86_64-linux-gnu/libffi.so.8', 'BINARY'),
|
||||
('libssl.so.3', '/lib/x86_64-linux-gnu/libssl.so.3', 'BINARY'),
|
||||
('liblzma.so.5', '/lib/x86_64-linux-gnu/liblzma.so.5', 'BINARY'),
|
||||
('libbz2.so.1.0', '/lib/x86_64-linux-gnu/libbz2.so.1.0', 'BINARY'),
|
||||
('libtinfo.so.6', '/lib/x86_64-linux-gnu/libtinfo.so.6', 'BINARY'),
|
||||
('libreadline.so.8', '/lib/x86_64-linux-gnu/libreadline.so.8', 'BINARY'),
|
||||
('libstdc++.so.6', '/lib/x86_64-linux-gnu/libstdc++.so.6', 'BINARY'),
|
||||
('libgcc_s.so.1', '/lib/x86_64-linux-gnu/libgcc_s.so.1', 'BINARY'),
|
||||
('libuuid.so.1', '/lib/x86_64-linux-gnu/libuuid.so.1', 'BINARY'),
|
||||
('libsqlite3.so.0', '/lib/x86_64-linux-gnu/libsqlite3.so.0', 'BINARY'),
|
||||
('pillow.libs/libfreetype-5d47eaee.so.6.20.2',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libfreetype-5d47eaee.so.6.20.2',
|
||||
'BINARY'),
|
||||
('pillow.libs/libbrotlicommon-c55a5f7a.so.1.1.0',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libbrotlicommon-c55a5f7a.so.1.1.0',
|
||||
'BINARY'),
|
||||
('pillow.libs/libpng16-ade663c1.so.16.47.0',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libpng16-ade663c1.so.16.47.0',
|
||||
'BINARY'),
|
||||
('pillow.libs/libbrotlidec-2ced2f3a.so.1.1.0',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libbrotlidec-2ced2f3a.so.1.1.0',
|
||||
'BINARY'),
|
||||
('pillow.libs/libharfbuzz-3ac4a098.so.0.61101.0',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libharfbuzz-3ac4a098.so.0.61101.0',
|
||||
'BINARY'),
|
||||
('pillow.libs/libxcb-55eab65a.so.1.1.0',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libxcb-55eab65a.so.1.1.0',
|
||||
'BINARY'),
|
||||
('pillow.libs/liblzma-64b7ab39.so.5.8.1',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/liblzma-64b7ab39.so.5.8.1',
|
||||
'BINARY'),
|
||||
('pillow.libs/libjpeg-b82026ff.so.62.4.0',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libjpeg-b82026ff.so.62.4.0',
|
||||
'BINARY'),
|
||||
('pillow.libs/libopenjp2-56811f71.so.2.5.3',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libopenjp2-56811f71.so.2.5.3',
|
||||
'BINARY'),
|
||||
('pillow.libs/libXau-154567c4.so.6.0.0',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libXau-154567c4.so.6.0.0',
|
||||
'BINARY'),
|
||||
('pillow.libs/libtiff-5df1d27b.so.6.1.0',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libtiff-5df1d27b.so.6.1.0',
|
||||
'BINARY'),
|
||||
('numpy.libs/libgfortran-040039e1-0352e75f.so.5.0.0',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy.libs/libgfortran-040039e1-0352e75f.so.5.0.0',
|
||||
'BINARY'),
|
||||
('numpy.libs/libquadmath-96973f99-934c22de.so.0.0.0',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy.libs/libquadmath-96973f99-934c22de.so.0.0.0',
|
||||
'BINARY'),
|
||||
('numpy.libs/libscipy_openblas64_-6bb31eeb.so',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy.libs/libscipy_openblas64_-6bb31eeb.so',
|
||||
'BINARY'),
|
||||
('pillow.libs/libsharpyuv-60a7c00b.so.0.1.1',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libsharpyuv-60a7c00b.so.0.1.1',
|
||||
'BINARY'),
|
||||
('pillow.libs/libwebp-5f0275c0.so.7.1.10',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libwebp-5f0275c0.so.7.1.10',
|
||||
'BINARY'),
|
||||
('pillow.libs/libwebpmux-6f2b1ad9.so.3.1.1',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libwebpmux-6f2b1ad9.so.3.1.1',
|
||||
'BINARY'),
|
||||
('pillow.libs/libwebpdemux-efaed568.so.2.0.16',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/libwebpdemux-efaed568.so.2.0.16',
|
||||
'BINARY'),
|
||||
('pillow.libs/liblcms2-cc10e42f.so.2.0.17',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pillow.libs/liblcms2-cc10e42f.so.2.0.17',
|
||||
'BINARY'),
|
||||
('pymupdf/libmupdf.so.25.6',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pymupdf/libmupdf.so.25.6',
|
||||
'BINARY'),
|
||||
('pymupdf/libmupdfcpp.so.25.6',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pymupdf/libmupdfcpp.so.25.6',
|
||||
'BINARY'),
|
||||
('certifi/py.typed',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/certifi/py.typed',
|
||||
'DATA'),
|
||||
('certifi/cacert.pem',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/certifi/cacert.pem',
|
||||
'DATA'),
|
||||
('pptx/templates/docx-icon.emf',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pptx/templates/docx-icon.emf',
|
||||
'DATA'),
|
||||
('pptx/templates/pptx-icon.emf',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pptx/templates/pptx-icon.emf',
|
||||
'DATA'),
|
||||
('pptx/templates/theme.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pptx/templates/theme.xml',
|
||||
'DATA'),
|
||||
('pptx/templates/generic-icon.emf',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pptx/templates/generic-icon.emf',
|
||||
'DATA'),
|
||||
('pptx/templates/notesMaster.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pptx/templates/notesMaster.xml',
|
||||
'DATA'),
|
||||
('pptx/templates/notes.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pptx/templates/notes.xml',
|
||||
'DATA'),
|
||||
('pptx/templates/default.pptx',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pptx/templates/default.pptx',
|
||||
'DATA'),
|
||||
('pptx/templates/xlsx-icon.emf',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/pptx/templates/xlsx-icon.emf',
|
||||
'DATA'),
|
||||
('lxml/isoschematron/resources/rng/iso-schematron.rng',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/isoschematron/resources/rng/iso-schematron.rng',
|
||||
'DATA'),
|
||||
('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt',
|
||||
'DATA'),
|
||||
('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl',
|
||||
'DATA'),
|
||||
('lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl',
|
||||
'DATA'),
|
||||
('lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl',
|
||||
'DATA'),
|
||||
('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl',
|
||||
'DATA'),
|
||||
('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl',
|
||||
'DATA'),
|
||||
('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl',
|
||||
'DATA'),
|
||||
('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/word/_rels/document.xml.rels',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/word/_rels/document.xml.rels',
|
||||
'DATA'),
|
||||
('docx/templates/default.docx',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default.docx',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/customXml/itemProps1.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/customXml/itemProps1.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/word/theme/theme1.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/word/theme/theme1.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-settings.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-settings.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/docProps/thumbnail.jpeg',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/docProps/thumbnail.jpeg',
|
||||
'DATA'),
|
||||
('docx/templates/default-header.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-header.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/_rels/.rels',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/_rels/.rels',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/word/numbering.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/word/numbering.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/word/settings.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/word/settings.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/customXml/item1.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/customXml/item1.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/word/styles.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/word/styles.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/customXml/_rels/item1.xml.rels',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/customXml/_rels/item1.xml.rels',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/word/stylesWithEffects.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/word/stylesWithEffects.xml',
|
||||
'DATA'),
|
||||
('docx/py.typed',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/py.typed',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/[Content_Types].xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/[Content_Types].xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/word/webSettings.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/word/webSettings.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-footer.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-footer.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/docProps/app.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/docProps/app.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-styles.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-styles.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/word/document.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/word/document.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/docProps/core.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/docProps/core.xml',
|
||||
'DATA'),
|
||||
('docx/templates/default-docx-template/word/fontTable.xml',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/docx/templates/default-docx-template/word/fontTable.xml',
|
||||
'DATA'),
|
||||
('langchain/document_transformers/xsl/html_chunks_with_headers.xslt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain/document_transformers/xsl/html_chunks_with_headers.xslt',
|
||||
'DATA'),
|
||||
('langchain/py.typed',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain/py.typed',
|
||||
'DATA'),
|
||||
('langchain/llms/grammars/json.gbnf',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain/llms/grammars/json.gbnf',
|
||||
'DATA'),
|
||||
('langchain/chains/llm_summarization_checker/prompts/create_facts.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain/chains/llm_summarization_checker/prompts/create_facts.txt',
|
||||
'DATA'),
|
||||
('langchain/chains/llm_summarization_checker/prompts/check_facts.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain/chains/llm_summarization_checker/prompts/check_facts.txt',
|
||||
'DATA'),
|
||||
('langchain/chains/llm_summarization_checker/prompts/revise_summary.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain/chains/llm_summarization_checker/prompts/revise_summary.txt',
|
||||
'DATA'),
|
||||
('langchain/llms/grammars/list.gbnf',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain/llms/grammars/list.gbnf',
|
||||
'DATA'),
|
||||
('langchain/chains/llm_summarization_checker/prompts/are_all_true_prompt.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain/chains/llm_summarization_checker/prompts/are_all_true_prompt.txt',
|
||||
'DATA'),
|
||||
('grpc/_cython/_credentials/roots.pem',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/grpc/_cython/_credentials/roots.pem',
|
||||
'DATA'),
|
||||
('google_api_core-2.24.2.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/google_api_core-2.24.2.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('google_api_core-2.24.2.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/google_api_core-2.24.2.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('google_api_core-2.24.2.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/google_api_core-2.24.2.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('google_api_core-2.24.2.dist-info/top_level.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/google_api_core-2.24.2.dist-info/top_level.txt',
|
||||
'DATA'),
|
||||
('google_api_core-2.24.2.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/google_api_core-2.24.2.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('google_api_core-2.24.2.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/google_api_core-2.24.2.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('google_api_core-2.24.2.dist-info/LICENSE',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/google_api_core-2.24.2.dist-info/LICENSE',
|
||||
'DATA'),
|
||||
('langchain-0.3.25.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain-0.3.25.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('numpy-2.2.5.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy-2.2.5.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('langchain_community-0.3.23.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain_community-0.3.23.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('urllib3-2.4.0.dist-info/licenses/LICENSE.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/urllib3-2.4.0.dist-info/licenses/LICENSE.txt',
|
||||
'DATA'),
|
||||
('langchain-0.3.25.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain-0.3.25.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('langchain_google_genai-2.1.4.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain_google_genai-2.1.4.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('langchain_community-0.3.23.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain_community-0.3.23.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('email_validator-2.2.0.dist-info/top_level.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/top_level.txt',
|
||||
'DATA'),
|
||||
('MarkupSafe-3.0.2.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/MarkupSafe-3.0.2.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('langchain-0.3.25.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain-0.3.25.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('langchain_community-0.3.23.dist-info/entry_points.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain_community-0.3.23.dist-info/entry_points.txt',
|
||||
'DATA'),
|
||||
('langchain_google_genai-2.1.4.dist-info/LICENSE',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain_google_genai-2.1.4.dist-info/LICENSE',
|
||||
'DATA'),
|
||||
('urllib3-2.4.0.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/urllib3-2.4.0.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('langchain-0.3.25.dist-info/licenses/LICENSE',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain-0.3.25.dist-info/licenses/LICENSE',
|
||||
'DATA'),
|
||||
('openai-1.77.0.dist-info/entry_points.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/openai-1.77.0.dist-info/entry_points.txt',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/LICENSE',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/LICENSE',
|
||||
'DATA'),
|
||||
('numpy-2.2.5.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy-2.2.5.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('langchain_community-0.3.23.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain_community-0.3.23.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('langchain_google_genai-2.1.4.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain_google_genai-2.1.4.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('MarkupSafe-3.0.2.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/MarkupSafe-3.0.2.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('langchain_google_genai-2.1.4.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain_google_genai-2.1.4.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('langchain-0.3.25.dist-info/entry_points.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain-0.3.25.dist-info/entry_points.txt',
|
||||
'DATA'),
|
||||
('MarkupSafe-3.0.2.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/MarkupSafe-3.0.2.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('email_validator-2.2.0.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/top_level.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/top_level.txt',
|
||||
'DATA'),
|
||||
('attrs-25.3.0.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/attrs-25.3.0.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/entry_points.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/entry_points.txt',
|
||||
'DATA'),
|
||||
('numpy-2.2.5.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy-2.2.5.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('openai-1.77.0.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/openai-1.77.0.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('numpy-2.2.5.dist-info/entry_points.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy-2.2.5.dist-info/entry_points.txt',
|
||||
'DATA'),
|
||||
('urllib3-2.4.0.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/urllib3-2.4.0.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('langchain_google_genai-2.1.4.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain_google_genai-2.1.4.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('email_validator-2.2.0.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('attrs-25.3.0.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/attrs-25.3.0.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('MarkupSafe-3.0.2.dist-info/LICENSE.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/MarkupSafe-3.0.2.dist-info/LICENSE.txt',
|
||||
'DATA'),
|
||||
('urllib3-2.4.0.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/urllib3-2.4.0.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('numpy-2.2.5.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy-2.2.5.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('attrs-25.3.0.dist-info/licenses/LICENSE',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/attrs-25.3.0.dist-info/licenses/LICENSE',
|
||||
'DATA'),
|
||||
('numpy-2.2.5.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy-2.2.5.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('email_validator-2.2.0.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('email_validator-2.2.0.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('email_validator-2.2.0.dist-info/entry_points.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/entry_points.txt',
|
||||
'DATA'),
|
||||
('langchain_community-0.3.23.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain_community-0.3.23.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('attrs-25.3.0.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/attrs-25.3.0.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('langchain-0.3.25.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain-0.3.25.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('MarkupSafe-3.0.2.dist-info/top_level.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/MarkupSafe-3.0.2.dist-info/top_level.txt',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('openai-1.77.0.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/openai-1.77.0.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('langchain_community-0.3.23.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain_community-0.3.23.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('websockets-15.0.1.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/websockets-15.0.1.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('MarkupSafe-3.0.2.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/MarkupSafe-3.0.2.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('openai-1.77.0.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/openai-1.77.0.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('openai-1.77.0.dist-info/licenses/LICENSE',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/openai-1.77.0.dist-info/licenses/LICENSE',
|
||||
'DATA'),
|
||||
('urllib3-2.4.0.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/urllib3-2.4.0.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('numpy-2.2.5.dist-info/LICENSE.txt',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/numpy-2.2.5.dist-info/LICENSE.txt',
|
||||
'DATA'),
|
||||
('langchain_google_genai-2.1.4.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain_google_genai-2.1.4.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('attrs-25.3.0.dist-info/WHEEL',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/attrs-25.3.0.dist-info/WHEEL',
|
||||
'DATA'),
|
||||
('email_validator-2.2.0.dist-info/LICENSE',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/LICENSE',
|
||||
'DATA'),
|
||||
('attrs-25.3.0.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/attrs-25.3.0.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('MarkupSafe-3.0.2.dist-info/INSTALLER',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/MarkupSafe-3.0.2.dist-info/INSTALLER',
|
||||
'DATA'),
|
||||
('openai-1.77.0.dist-info/METADATA',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/openai-1.77.0.dist-info/METADATA',
|
||||
'DATA'),
|
||||
('openai-1.77.0.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/openai-1.77.0.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('email_validator-2.2.0.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/email_validator-2.2.0.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('urllib3-2.4.0.dist-info/RECORD',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/urllib3-2.4.0.dist-info/RECORD',
|
||||
'DATA'),
|
||||
('langchain-0.3.25.dist-info/REQUESTED',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/langchain-0.3.25.dist-info/REQUESTED',
|
||||
'DATA'),
|
||||
('base_library.zip',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/base_library.zip',
|
||||
'DATA'),
|
||||
('libfreetype-5d47eaee.so.6.20.2',
|
||||
'pillow.libs/libfreetype-5d47eaee.so.6.20.2',
|
||||
'SYMLINK'),
|
||||
('libbrotlicommon-c55a5f7a.so.1.1.0',
|
||||
'pillow.libs/libbrotlicommon-c55a5f7a.so.1.1.0',
|
||||
'SYMLINK'),
|
||||
('libpng16-ade663c1.so.16.47.0',
|
||||
'pillow.libs/libpng16-ade663c1.so.16.47.0',
|
||||
'SYMLINK'),
|
||||
('libbrotlidec-2ced2f3a.so.1.1.0',
|
||||
'pillow.libs/libbrotlidec-2ced2f3a.so.1.1.0',
|
||||
'SYMLINK'),
|
||||
('libharfbuzz-3ac4a098.so.0.61101.0',
|
||||
'pillow.libs/libharfbuzz-3ac4a098.so.0.61101.0',
|
||||
'SYMLINK'),
|
||||
('libxcb-55eab65a.so.1.1.0',
|
||||
'pillow.libs/libxcb-55eab65a.so.1.1.0',
|
||||
'SYMLINK'),
|
||||
('liblzma-64b7ab39.so.5.8.1',
|
||||
'pillow.libs/liblzma-64b7ab39.so.5.8.1',
|
||||
'SYMLINK'),
|
||||
('libjpeg-b82026ff.so.62.4.0',
|
||||
'pillow.libs/libjpeg-b82026ff.so.62.4.0',
|
||||
'SYMLINK'),
|
||||
('libopenjp2-56811f71.so.2.5.3',
|
||||
'pillow.libs/libopenjp2-56811f71.so.2.5.3',
|
||||
'SYMLINK'),
|
||||
('libXau-154567c4.so.6.0.0',
|
||||
'pillow.libs/libXau-154567c4.so.6.0.0',
|
||||
'SYMLINK'),
|
||||
('libtiff-5df1d27b.so.6.1.0',
|
||||
'pillow.libs/libtiff-5df1d27b.so.6.1.0',
|
||||
'SYMLINK'),
|
||||
('libgfortran-040039e1-0352e75f.so.5.0.0',
|
||||
'numpy.libs/libgfortran-040039e1-0352e75f.so.5.0.0',
|
||||
'SYMLINK'),
|
||||
('libquadmath-96973f99-934c22de.so.0.0.0',
|
||||
'numpy.libs/libquadmath-96973f99-934c22de.so.0.0.0',
|
||||
'SYMLINK'),
|
||||
('libscipy_openblas64_-6bb31eeb.so',
|
||||
'numpy.libs/libscipy_openblas64_-6bb31eeb.so',
|
||||
'SYMLINK'),
|
||||
('libsharpyuv-60a7c00b.so.0.1.1',
|
||||
'pillow.libs/libsharpyuv-60a7c00b.so.0.1.1',
|
||||
'SYMLINK'),
|
||||
('libwebp-5f0275c0.so.7.1.10',
|
||||
'pillow.libs/libwebp-5f0275c0.so.7.1.10',
|
||||
'SYMLINK'),
|
||||
('libwebpmux-6f2b1ad9.so.3.1.1',
|
||||
'pillow.libs/libwebpmux-6f2b1ad9.so.3.1.1',
|
||||
'SYMLINK'),
|
||||
('libwebpdemux-efaed568.so.2.0.16',
|
||||
'pillow.libs/libwebpdemux-efaed568.so.2.0.16',
|
||||
'SYMLINK'),
|
||||
('liblcms2-cc10e42f.so.2.0.17',
|
||||
'pillow.libs/liblcms2-cc10e42f.so.2.0.17',
|
||||
'SYMLINK'),
|
||||
('libmupdf.so.25.6', 'pymupdf/libmupdf.so.25.6', 'SYMLINK'),
|
||||
('libmupdfcpp.so.25.6', 'pymupdf/libmupdfcpp.so.25.6', 'SYMLINK')],)
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
('/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/server',
|
||||
True,
|
||||
False,
|
||||
True,
|
||||
None,
|
||||
None,
|
||||
False,
|
||||
False,
|
||||
None,
|
||||
True,
|
||||
False,
|
||||
None,
|
||||
None,
|
||||
None,
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/server.pkg',
|
||||
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||
('PYZ-00.pyz',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/localpycs/struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/localpycs/pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/localpycs/pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/localpycs/pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgres',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py',
|
||||
'PYSOURCE'),
|
||||
('server',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/server.py',
|
||||
'PYSOURCE')],
|
||||
[],
|
||||
False,
|
||||
False,
|
||||
1746723748,
|
||||
[('run',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/bootloader/Linux-64bit-intel/run',
|
||||
'EXECUTABLE')],
|
||||
'/lib/x86_64-linux-gnu/libpython3.11.so.1.0')
|
||||
|
|
@ -1,52 +0,0 @@
|
|||
('/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/server.pkg',
|
||||
{'BINARY': True,
|
||||
'DATA': True,
|
||||
'EXECUTABLE': True,
|
||||
'EXTENSION': True,
|
||||
'PYMODULE': True,
|
||||
'PYSOURCE': True,
|
||||
'PYZ': False,
|
||||
'SPLASH': True,
|
||||
'SYMLINK': False},
|
||||
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||
('PYZ-00.pyz',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/PYZ-00.pyz',
|
||||
'PYZ'),
|
||||
('struct',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/localpycs/struct.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod01_archive',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/localpycs/pyimod01_archive.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod02_importers',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/localpycs/pyimod02_importers.pyc',
|
||||
'PYMODULE'),
|
||||
('pyimod03_ctypes',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/build/server/localpycs/pyimod03_ctypes.pyc',
|
||||
'PYMODULE'),
|
||||
('pyiboot01_bootstrap',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgres',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/env/lib/python3.11/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py',
|
||||
'PYSOURCE'),
|
||||
('server',
|
||||
'/home/viristo/prog/presentation_generator/presenton_open_source/servers/fastapi/server.py',
|
||||
'PYSOURCE')],
|
||||
'libpython3.11.so.1.0',
|
||||
True,
|
||||
False,
|
||||
False,
|
||||
[],
|
||||
None,
|
||||
None,
|
||||
None)
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
|
|
@ -40,9 +40,10 @@ async def generate_document_summary(documents: List[Document]):
|
|||
if os.getenv("LLM") == "openai"
|
||||
else ChatGoogleGenerativeAI(model="gemini-2.0-flash", max_output_tokens=8000)
|
||||
)
|
||||
text_splitter = CharacterTextSplitter.from_tiktoken_encoder(
|
||||
encoding_name="cl100k_base", chunk_size=200000, chunk_overlap=0
|
||||
)
|
||||
# text_splitter = CharacterTextSplitter.from_tiktoken_encoder(
|
||||
# encoding_name="cl100k_base", chunk_size=200000, chunk_overlap=0
|
||||
# )
|
||||
text_splitter = CharacterTextSplitter(chunk_size=200000, chunk_overlap=0)
|
||||
chain = prompt_template | model
|
||||
|
||||
coroutines = []
|
||||
|
|
|
|||
|
|
@ -29,6 +29,9 @@ import { AlertCircle } from "lucide-react";
|
|||
import Help from "./Help";
|
||||
import { getEnv } from "@/utils/constant";
|
||||
|
||||
const urls = getEnv();
|
||||
const BASE_URL = urls.BASE_URL;
|
||||
|
||||
// Custom debounce function
|
||||
function useDebounce<T extends (...args: any[]) => void>(
|
||||
callback: T,
|
||||
|
|
|
|||
3682
servers/nextjs/package-lock.json
generated
3682
servers/nextjs/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -43,7 +43,6 @@
|
|||
"cmdk": "^1.0.0",
|
||||
"html-to-image": "^1.11.13",
|
||||
"jsonrepair": "^3.12.0",
|
||||
"license-checker-rseidelsohn": "^4.4.2",
|
||||
"lucide-react": "^0.447.0",
|
||||
"marked": "^15.0.11",
|
||||
"next": "^14.2.14",
|
||||
|
|
@ -52,14 +51,12 @@
|
|||
"react-dom": "^18",
|
||||
"react-redux": "^9.1.2",
|
||||
"recharts": "^2.15.0",
|
||||
"shadcn-ui": "^0.9.2",
|
||||
"sqlite": "^5.1.1",
|
||||
"sqlite3": "^5.1.7",
|
||||
"tailwind-merge": "^2.5.3",
|
||||
"tailwind-scrollbar-hide": "^2.0.0",
|
||||
"tailwindcss-animate": "^1.0.7",
|
||||
"tiptap-markdown": "^0.8.10",
|
||||
"uuid": "^11.0.2"
|
||||
"tiptap-markdown": "^0.8.10"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/typography": "^0.5.16",
|
||||
|
|
@ -68,13 +65,7 @@
|
|||
"@types/puppeteer": "^5.4.7",
|
||||
"@types/react": "^18",
|
||||
"@types/react-dom": "^18",
|
||||
"@types/uuid": "^10.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.14.0",
|
||||
"@typescript-eslint/parser": "^8.14.0",
|
||||
"cypress": "^14.3.3",
|
||||
"eslint": "^8",
|
||||
"eslint-config-next": "^14.2.14",
|
||||
"postcss": "^8",
|
||||
"tailwindcss": "^3.4.1",
|
||||
"typescript": "^5"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue