├── .venv ├── Lib │ └── site-packages │ │ ├── click │ │ ├── py.typed │ │ └── __pycache__ │ │ │ ├── core.cpython-312.pyc │ │ │ ├── _compat.cpython-312.pyc │ │ │ ├── globals.cpython-312.pyc │ │ │ ├── parser.cpython-312.pyc │ │ │ ├── termui.cpython-312.pyc │ │ │ ├── testing.cpython-312.pyc │ │ │ ├── types.cpython-312.pyc │ │ │ ├── utils.cpython-312.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _textwrap.cpython-312.pyc │ │ │ ├── _termui_impl.cpython-312.pyc │ │ │ ├── _winconsole.cpython-312.pyc │ │ │ ├── decorators.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── formatting.cpython-312.pyc │ │ │ └── shell_completion.cpython-312.pyc │ │ ├── flask │ │ ├── py.typed │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── app.cpython-312.pyc │ │ │ ├── cli.cpython-312.pyc │ │ │ ├── ctx.cpython-312.pyc │ │ │ ├── config.cpython-312.pyc │ │ │ ├── globals.cpython-312.pyc │ │ │ ├── helpers.cpython-312.pyc │ │ │ ├── logging.cpython-312.pyc │ │ │ ├── signals.cpython-312.pyc │ │ │ ├── testing.cpython-312.pyc │ │ │ ├── typing.cpython-312.pyc │ │ │ ├── views.cpython-312.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ ├── sessions.cpython-312.pyc │ │ │ ├── wrappers.cpython-312.pyc │ │ │ ├── blueprints.cpython-312.pyc │ │ │ ├── debughelpers.cpython-312.pyc │ │ │ └── templating.cpython-312.pyc │ │ ├── json │ │ │ └── __pycache__ │ │ │ │ ├── tag.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── provider.cpython-312.pyc │ │ └── sansio │ │ │ └── __pycache__ │ │ │ ├── app.cpython-312.pyc │ │ │ ├── blueprints.cpython-312.pyc │ │ │ └── scaffold.cpython-312.pyc │ │ ├── bcrypt │ │ ├── py.typed │ │ ├── _bcrypt.pyd │ │ └── __pycache__ │ │ │ └── __init__.cpython-312.pyc │ │ ├── blinker │ │ ├── py.typed │ │ └── __pycache__ │ │ │ ├── base.cpython-312.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ └── _utilities.cpython-312.pyc │ │ ├── jinja2 │ │ ├── py.typed │ │ └── __pycache__ │ │ │ ├── ext.cpython-312.pyc │ │ │ ├── debug.cpython-312.pyc │ │ │ ├── lexer.cpython-312.pyc │ │ │ ├── meta.cpython-312.pyc │ │ │ ├── nodes.cpython-312.pyc │ │ │ ├── parser.cpython-312.pyc │ │ │ ├── tests.cpython-312.pyc │ │ │ ├── utils.cpython-312.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── bccache.cpython-312.pyc │ │ │ ├── compiler.cpython-312.pyc │ │ │ ├── defaults.cpython-312.pyc │ │ │ ├── filters.cpython-312.pyc │ │ │ ├── loaders.cpython-312.pyc │ │ │ ├── runtime.cpython-312.pyc │ │ │ ├── sandbox.cpython-312.pyc │ │ │ ├── visitor.cpython-312.pyc │ │ │ ├── _identifier.cpython-312.pyc │ │ │ ├── async_utils.cpython-312.pyc │ │ │ ├── constants.cpython-312.pyc │ │ │ ├── environment.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── idtracking.cpython-312.pyc │ │ │ ├── nativetypes.cpython-312.pyc │ │ │ └── optimizer.cpython-312.pyc │ │ ├── markupsafe │ │ ├── py.typed │ │ ├── _speedups.cp312-win_amd64.pyd │ │ └── __pycache__ │ │ │ ├── _native.cpython-312.pyc │ │ │ └── __init__.cpython-312.pyc │ │ ├── sqlalchemy │ │ ├── py.typed │ │ ├── __pycache__ │ │ │ ├── exc.cpython-312.pyc │ │ │ ├── log.cpython-312.pyc │ │ │ ├── events.cpython-312.pyc │ │ │ ├── schema.cpython-312.pyc │ │ │ ├── types.cpython-312.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ └── inspection.cpython-312.pyc │ │ ├── orm │ │ │ └── __pycache__ │ │ │ │ ├── exc.cpython-312.pyc │ │ │ │ ├── base.cpython-312.pyc │ │ │ │ ├── query.cpython-312.pyc │ │ │ │ ├── state.cpython-312.pyc │ │ │ │ ├── sync.cpython-312.pyc │ │ │ │ ├── util.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _typing.cpython-312.pyc │ │ │ │ ├── context.cpython-312.pyc │ │ │ │ ├── decl_api.cpython-312.pyc │ │ │ │ ├── dynamic.cpython-312.pyc │ │ │ │ ├── events.cpython-312.pyc │ │ │ │ ├── identity.cpython-312.pyc │ │ │ │ ├── loading.cpython-312.pyc │ │ │ │ ├── mapper.cpython-312.pyc │ │ │ │ ├── scoping.cpython-312.pyc │ │ │ │ ├── session.cpython-312.pyc │ │ │ │ ├── attributes.cpython-312.pyc │ │ │ │ ├── decl_base.cpython-312.pyc │ │ │ │ ├── dependency.cpython-312.pyc │ │ │ │ ├── evaluator.cpython-312.pyc │ │ │ │ ├── interfaces.cpython-312.pyc │ │ │ │ ├── properties.cpython-312.pyc │ │ │ │ ├── strategies.cpython-312.pyc │ │ │ │ ├── unitofwork.cpython-312.pyc │ │ │ │ └── writeonly.cpython-312.pyc │ │ ├── sql │ │ │ └── __pycache__ │ │ │ │ ├── ddl.cpython-312.pyc │ │ │ │ ├── dml.cpython-312.pyc │ │ │ │ ├── base.cpython-312.pyc │ │ │ │ ├── crud.cpython-312.pyc │ │ │ │ ├── roles.cpython-312.pyc │ │ │ │ ├── util.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _py_util.cpython-312.pyc │ │ │ │ ├── _typing.cpython-312.pyc │ │ │ │ ├── compiler.cpython-312.pyc │ │ │ │ ├── elements.cpython-312.pyc │ │ │ │ ├── events.cpython-312.pyc │ │ │ │ ├── lambdas.cpython-312.pyc │ │ │ │ ├── naming.cpython-312.pyc │ │ │ │ ├── schema.cpython-312.pyc │ │ │ │ ├── sqltypes.cpython-312.pyc │ │ │ │ ├── type_api.cpython-312.pyc │ │ │ │ ├── visitors.cpython-312.pyc │ │ │ │ ├── _orm_types.cpython-312.pyc │ │ │ │ ├── annotation.cpython-312.pyc │ │ │ │ ├── cache_key.cpython-312.pyc │ │ │ │ ├── coercions.cpython-312.pyc │ │ │ │ ├── expression.cpython-312.pyc │ │ │ │ ├── functions.cpython-312.pyc │ │ │ │ ├── operators.cpython-312.pyc │ │ │ │ ├── selectable.cpython-312.pyc │ │ │ │ └── traversals.cpython-312.pyc │ │ ├── cyextension │ │ │ ├── util.cp312-win_amd64.pyd │ │ │ └── processors.cp312-win_amd64.pyd │ │ ├── event │ │ │ └── __pycache__ │ │ │ │ ├── api.cpython-312.pyc │ │ │ │ ├── attr.cpython-312.pyc │ │ │ │ ├── base.cpython-312.pyc │ │ │ │ ├── legacy.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── registry.cpython-312.pyc │ │ ├── ext │ │ │ ├── __pycache__ │ │ │ │ ├── baked.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── automap.cpython-312.pyc │ │ │ │ ├── compiler.cpython-312.pyc │ │ │ │ ├── hybrid.cpython-312.pyc │ │ │ │ ├── mutable.cpython-312.pyc │ │ │ │ ├── indexable.cpython-312.pyc │ │ │ │ └── serializer.cpython-312.pyc │ │ │ └── mypy │ │ │ │ └── __pycache__ │ │ │ │ ├── apply.cpython-312.pyc │ │ │ │ ├── infer.cpython-312.pyc │ │ │ │ ├── names.cpython-312.pyc │ │ │ │ └── util.cpython-312.pyc │ │ ├── pool │ │ │ └── __pycache__ │ │ │ │ ├── base.cpython-312.pyc │ │ │ │ ├── impl.cpython-312.pyc │ │ │ │ ├── events.cpython-312.pyc │ │ │ │ └── __init__.cpython-312.pyc │ │ ├── engine │ │ │ └── __pycache__ │ │ │ │ ├── base.cpython-312.pyc │ │ │ │ ├── mock.cpython-312.pyc │ │ │ │ ├── row.cpython-312.pyc │ │ │ │ ├── url.cpython-312.pyc │ │ │ │ ├── util.cpython-312.pyc │ │ │ │ ├── _py_row.cpython-312.pyc │ │ │ │ ├── create.cpython-312.pyc │ │ │ │ ├── cursor.cpython-312.pyc │ │ │ │ ├── default.cpython-312.pyc │ │ │ │ ├── events.cpython-312.pyc │ │ │ │ └── result.cpython-312.pyc │ │ ├── testing │ │ │ └── __pycache__ │ │ │ │ ├── util.cpython-312.pyc │ │ │ │ ├── config.cpython-312.pyc │ │ │ │ └── schema.cpython-312.pyc │ │ ├── util │ │ │ └── __pycache__ │ │ │ │ ├── _has_cy.cpython-312.pyc │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ ├── queue.cpython-312.pyc │ │ │ │ ├── typing.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── preloaded.cpython-312.pyc │ │ └── future │ │ │ └── __pycache__ │ │ │ └── engine.cpython-312.pyc │ │ ├── werkzeug │ │ ├── py.typed │ │ ├── sansio │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── http.cpython-312.pyc │ │ │ │ ├── request.cpython-312.pyc │ │ │ │ ├── utils.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── multipart.cpython-312.pyc │ │ │ │ └── response.cpython-312.pyc │ │ ├── middleware │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── lint.cpython-312.pyc │ │ ├── debug │ │ │ ├── shared │ │ │ │ ├── less.png │ │ │ │ ├── more.png │ │ │ │ └── console.png │ │ │ └── __pycache__ │ │ │ │ ├── repr.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── console.cpython-312.pyc │ │ │ │ └── tbtools.cpython-312.pyc │ │ ├── __pycache__ │ │ │ ├── http.cpython-312.pyc │ │ │ ├── test.cpython-312.pyc │ │ │ ├── urls.cpython-312.pyc │ │ │ ├── wsgi.cpython-312.pyc │ │ │ ├── local.cpython-312.pyc │ │ │ ├── utils.cpython-312.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _internal.cpython-312.pyc │ │ │ ├── _reloader.cpython-312.pyc │ │ │ ├── security.cpython-312.pyc │ │ │ ├── serving.cpython-312.pyc │ │ │ ├── testapp.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── formparser.cpython-312.pyc │ │ │ └── user_agent.cpython-312.pyc │ │ ├── routing │ │ │ └── __pycache__ │ │ │ │ ├── map.cpython-312.pyc │ │ │ │ ├── rules.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── matcher.cpython-312.pyc │ │ └── wrappers │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ └── request.cpython-312.pyc │ │ ├── itsdangerous │ │ ├── py.typed │ │ └── __pycache__ │ │ │ ├── _json.cpython-312.pyc │ │ │ ├── exc.cpython-312.pyc │ │ │ ├── timed.cpython-312.pyc │ │ │ ├── signer.cpython-312.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── encoding.cpython-312.pyc │ │ │ ├── serializer.cpython-312.pyc │ │ │ └── url_safe.cpython-312.pyc │ │ ├── flask_sqlalchemy │ │ ├── py.typed │ │ └── __pycache__ │ │ │ ├── cli.cpython-312.pyc │ │ │ ├── model.cpython-312.pyc │ │ │ ├── query.cpython-312.pyc │ │ │ ├── table.cpython-312.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── session.cpython-312.pyc │ │ │ ├── extension.cpython-312.pyc │ │ │ └── pagination.cpython-312.pyc │ │ ├── greenlet │ │ ├── platform │ │ │ ├── __init__.py │ │ │ ├── switch_x64_masm.obj │ │ │ ├── switch_arm64_masm.obj │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-312.pyc │ │ ├── _greenlet.cp312-win_amd64.pyd │ │ ├── __pycache__ │ │ │ └── __init__.cpython-312.pyc │ │ └── tests │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── test_cpp.cpython-312.pyc │ │ │ ├── test_gc.cpython-312.pyc │ │ │ ├── leakcheck.cpython-312.pyc │ │ │ ├── test_leaks.cpython-312.pyc │ │ │ ├── test_throw.cpython-312.pyc │ │ │ ├── test_greenlet.cpython-312.pyc │ │ │ ├── test_tracing.cpython-312.pyc │ │ │ ├── test_version.cpython-312.pyc │ │ │ └── test_weakref.cpython-312.pyc │ │ │ ├── _test_extension.cp312-win_amd64.pyd │ │ │ └── _test_extension_cpp.cp312-win_amd64.pyd │ │ ├── pip-24.2.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── entry_points.txt │ │ └── WHEEL │ │ ├── pip │ │ ├── _vendor │ │ │ ├── certifi │ │ │ │ ├── py.typed │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── core.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── __main__.cpython-312.pyc │ │ │ ├── distro │ │ │ │ ├── py.typed │ │ │ │ ├── __main__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── distro.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── __main__.cpython-312.pyc │ │ │ ├── idna │ │ │ │ ├── py.typed │ │ │ │ ├── package_data.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── codec.cpython-312.pyc │ │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ │ ├── core.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── idnadata.cpython-312.pyc │ │ │ │ │ ├── intranges.cpython-312.pyc │ │ │ │ │ └── uts46data.cpython-312.pyc │ │ │ ├── rich │ │ │ │ ├── py.typed │ │ │ │ ├── themes.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── abc.cpython-312.pyc │ │ │ │ │ ├── bar.cpython-312.pyc │ │ │ │ │ ├── box.cpython-312.pyc │ │ │ │ │ ├── _loop.cpython-312.pyc │ │ │ │ │ ├── _pick.cpython-312.pyc │ │ │ │ │ ├── _ratio.cpython-312.pyc │ │ │ │ │ ├── _stack.cpython-312.pyc │ │ │ │ │ ├── _timer.cpython-312.pyc │ │ │ │ │ ├── _wrap.cpython-312.pyc │ │ │ │ │ ├── align.cpython-312.pyc │ │ │ │ │ ├── ansi.cpython-312.pyc │ │ │ │ │ ├── cells.cpython-312.pyc │ │ │ │ │ ├── color.cpython-312.pyc │ │ │ │ │ ├── emoji.cpython-312.pyc │ │ │ │ │ ├── errors.cpython-312.pyc │ │ │ │ │ ├── json.cpython-312.pyc │ │ │ │ │ ├── layout.cpython-312.pyc │ │ │ │ │ ├── live.cpython-312.pyc │ │ │ │ │ ├── markup.cpython-312.pyc │ │ │ │ │ ├── pager.cpython-312.pyc │ │ │ │ │ ├── panel.cpython-312.pyc │ │ │ │ │ ├── pretty.cpython-312.pyc │ │ │ │ │ ├── prompt.cpython-312.pyc │ │ │ │ │ ├── region.cpython-312.pyc │ │ │ │ │ ├── repr.cpython-312.pyc │ │ │ │ │ ├── rule.cpython-312.pyc │ │ │ │ │ ├── scope.cpython-312.pyc │ │ │ │ │ ├── screen.cpython-312.pyc │ │ │ │ │ ├── status.cpython-312.pyc │ │ │ │ │ ├── style.cpython-312.pyc │ │ │ │ │ ├── styled.cpython-312.pyc │ │ │ │ │ ├── syntax.cpython-312.pyc │ │ │ │ │ ├── table.cpython-312.pyc │ │ │ │ │ ├── text.cpython-312.pyc │ │ │ │ │ ├── theme.cpython-312.pyc │ │ │ │ │ ├── themes.cpython-312.pyc │ │ │ │ │ ├── tree.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ │ ├── _fileno.cpython-312.pyc │ │ │ │ │ ├── _inspect.cpython-312.pyc │ │ │ │ │ ├── _windows.cpython-312.pyc │ │ │ │ │ ├── columns.cpython-312.pyc │ │ │ │ │ ├── console.cpython-312.pyc │ │ │ │ │ ├── control.cpython-312.pyc │ │ │ │ │ ├── diagnose.cpython-312.pyc │ │ │ │ │ ├── filesize.cpython-312.pyc │ │ │ │ │ ├── jupyter.cpython-312.pyc │ │ │ │ │ ├── logging.cpython-312.pyc │ │ │ │ │ ├── measure.cpython-312.pyc │ │ │ │ │ ├── padding.cpython-312.pyc │ │ │ │ │ ├── palette.cpython-312.pyc │ │ │ │ │ ├── progress.cpython-312.pyc │ │ │ │ │ ├── protocol.cpython-312.pyc │ │ │ │ │ ├── segment.cpython-312.pyc │ │ │ │ │ └── spinner.cpython-312.pyc │ │ │ ├── cachecontrol │ │ │ │ └── py.typed │ │ │ ├── packaging │ │ │ │ └── py.typed │ │ │ ├── platformdirs │ │ │ │ └── py.typed │ │ │ ├── resolvelib │ │ │ │ ├── py.typed │ │ │ │ └── compat │ │ │ │ │ └── __init__.py │ │ │ ├── truststore │ │ │ │ └── py.typed │ │ │ ├── urllib3 │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _securetransport │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── backports │ │ │ │ │ │ └── __init__.py │ │ │ │ └── _version.py │ │ │ ├── tomli │ │ │ │ ├── py.typed │ │ │ │ └── __pycache__ │ │ │ │ │ ├── _re.cpython-312.pyc │ │ │ │ │ ├── _parser.cpython-312.pyc │ │ │ │ │ └── _types.cpython-312.pyc │ │ │ ├── distlib │ │ │ │ ├── t32.exe │ │ │ │ ├── t64.exe │ │ │ │ ├── w32.exe │ │ │ │ ├── w64.exe │ │ │ │ ├── t64-arm.exe │ │ │ │ ├── w64-arm.exe │ │ │ │ └── __pycache__ │ │ │ │ │ ├── index.cpython-312.pyc │ │ │ │ │ ├── util.cpython-312.pyc │ │ │ │ │ ├── wheel.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ │ ├── database.cpython-312.pyc │ │ │ │ │ ├── locators.cpython-312.pyc │ │ │ │ │ ├── manifest.cpython-312.pyc │ │ │ │ │ ├── markers.cpython-312.pyc │ │ │ │ │ ├── metadata.cpython-312.pyc │ │ │ │ │ ├── scripts.cpython-312.pyc │ │ │ │ │ └── version.cpython-312.pyc │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ ├── msgpack │ │ │ │ └── __pycache__ │ │ │ │ │ ├── ext.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── fallback.cpython-312.pyc │ │ │ ├── pygments │ │ │ │ └── __pycache__ │ │ │ │ │ └── util.cpython-312.pyc │ │ │ └── requests │ │ │ │ └── __pycache__ │ │ │ │ ├── api.cpython-312.pyc │ │ │ │ ├── auth.cpython-312.pyc │ │ │ │ └── help.cpython-312.pyc │ │ ├── _internal │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── _log.cpython-312.pyc │ │ │ │ │ ├── glibc.cpython-312.pyc │ │ │ │ │ ├── misc.cpython-312.pyc │ │ │ │ │ ├── retry.cpython-312.pyc │ │ │ │ │ ├── urls.cpython-312.pyc │ │ │ │ │ ├── wheel.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── appdirs.cpython-312.pyc │ │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ │ ├── datetime.cpython-312.pyc │ │ │ │ │ ├── egg_link.cpython-312.pyc │ │ │ │ │ ├── encoding.cpython-312.pyc │ │ │ │ │ ├── hashes.cpython-312.pyc │ │ │ │ │ ├── logging.cpython-312.pyc │ │ │ │ │ └── temp_dir.cpython-312.pyc │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── build │ │ │ │ │ └── __init__.py │ │ │ │ └── install │ │ │ │ │ └── __init__.py │ │ │ ├── resolution │ │ │ │ ├── __init__.py │ │ │ │ ├── legacy │ │ │ │ │ └── __init__.py │ │ │ │ └── resolvelib │ │ │ │ │ └── __init__.py │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── sources.cpython-312.pyc │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── auth.cpython-312.pyc │ │ │ │ │ ├── cache.cpython-312.pyc │ │ │ │ │ ├── utils.cpython-312.pyc │ │ │ │ │ └── xmlrpc.cpython-312.pyc │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── link.cpython-312.pyc │ │ │ │ │ ├── index.cpython-312.pyc │ │ │ │ │ ├── scheme.cpython-312.pyc │ │ │ │ │ └── wheel.cpython-312.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── main.cpython-312.pyc │ │ │ │ ├── cache.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── build_env.cpython-312.pyc │ │ │ │ ├── pyproject.cpython-312.pyc │ │ │ │ ├── exceptions.cpython-312.pyc │ │ │ │ ├── configuration.cpython-312.pyc │ │ │ │ └── wheel_builder.cpython-312.pyc │ │ │ ├── cli │ │ │ │ ├── status_codes.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── main.cpython-312.pyc │ │ │ │ │ ├── parser.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── cmdoptions.cpython-312.pyc │ │ │ │ │ └── spinners.cpython-312.pyc │ │ │ ├── vcs │ │ │ │ └── __pycache__ │ │ │ │ │ ├── git.cpython-312.pyc │ │ │ │ │ ├── bazaar.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── mercurial.cpython-312.pyc │ │ │ │ │ └── subversion.cpython-312.pyc │ │ │ ├── req │ │ │ │ └── __pycache__ │ │ │ │ │ ├── req_set.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ └── req_file.cpython-312.pyc │ │ │ ├── commands │ │ │ │ └── __pycache__ │ │ │ │ │ ├── cache.cpython-312.pyc │ │ │ │ │ ├── check.cpython-312.pyc │ │ │ │ │ ├── debug.cpython-312.pyc │ │ │ │ │ ├── hash.cpython-312.pyc │ │ │ │ │ ├── help.cpython-312.pyc │ │ │ │ │ ├── index.cpython-312.pyc │ │ │ │ │ ├── list.cpython-312.pyc │ │ │ │ │ ├── show.cpython-312.pyc │ │ │ │ │ └── wheel.cpython-312.pyc │ │ │ ├── locations │ │ │ │ └── __pycache__ │ │ │ │ │ └── base.cpython-312.pyc │ │ │ └── metadata │ │ │ │ └── __pycache__ │ │ │ │ ├── _json.cpython-312.pyc │ │ │ │ └── base.cpython-312.pyc │ │ └── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ └── __pip-runner__.cpython-312.pyc │ │ ├── flask-3.0.3.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── entry_points.txt │ │ └── WHEEL │ │ ├── Flask_Bcrypt-1.0.1.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── SQLAlchemy-2.0.25.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── click-8.1.7.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── MarkupSafe-2.1.5.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── bcrypt-4.2.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── blinker-1.8.2.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── colorama-0.4.6.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── flask_sqlalchemy-3.1.1.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── greenlet-3.0.3.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── jinja2-3.1.4.dist-info │ │ ├── INSTALLER │ │ ├── entry_points.txt │ │ └── WHEEL │ │ ├── werkzeug-3.0.3.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── itsdangerous-2.2.0.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── typing_extensions-4.12.2.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── colorama │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── utils.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── ansi_test.cpython-312.pyc │ │ │ │ ├── isatty_test.cpython-312.pyc │ │ │ │ └── winterm_test.cpython-312.pyc │ │ └── __pycache__ │ │ │ ├── ansi.cpython-312.pyc │ │ │ ├── win32.cpython-312.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── winterm.cpython-312.pyc │ │ │ ├── ansitowin32.cpython-312.pyc │ │ │ └── initialise.cpython-312.pyc │ │ └── __pycache__ │ │ ├── flask_bcrypt.cpython-312.pyc │ │ └── typing_extensions.cpython-312.pyc └── Scripts │ ├── pip.exe │ ├── pip3.exe │ ├── flask.exe │ ├── pip3.12.exe │ ├── python.exe │ └── pythonw.exe ├── myenv ├── Lib │ └── site-packages │ │ ├── pip-24.2.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── entry_points.txt │ │ └── WHEEL │ │ └── pip │ │ ├── _vendor │ │ ├── certifi │ │ │ ├── py.typed │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── core.cpython-312.pyc │ │ ├── distro │ │ │ ├── py.typed │ │ │ ├── __main__.py │ │ │ └── __pycache__ │ │ │ │ └── distro.cpython-312.pyc │ │ ├── idna │ │ │ ├── py.typed │ │ │ ├── package_data.py │ │ │ └── __pycache__ │ │ │ │ ├── codec.cpython-312.pyc │ │ │ │ ├── compat.cpython-312.pyc │ │ │ │ ├── core.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── idnadata.cpython-312.pyc │ │ ├── rich │ │ │ ├── py.typed │ │ │ ├── themes.py │ │ │ └── __pycache__ │ │ │ │ ├── abc.cpython-312.pyc │ │ │ │ ├── bar.cpython-312.pyc │ │ │ │ ├── box.cpython-312.pyc │ │ │ │ ├── _loop.cpython-312.pyc │ │ │ │ ├── _pick.cpython-312.pyc │ │ │ │ ├── _ratio.cpython-312.pyc │ │ │ │ ├── _stack.cpython-312.pyc │ │ │ │ ├── _timer.cpython-312.pyc │ │ │ │ ├── _wrap.cpython-312.pyc │ │ │ │ ├── align.cpython-312.pyc │ │ │ │ ├── ansi.cpython-312.pyc │ │ │ │ ├── cells.cpython-312.pyc │ │ │ │ ├── color.cpython-312.pyc │ │ │ │ ├── emoji.cpython-312.pyc │ │ │ │ ├── errors.cpython-312.pyc │ │ │ │ ├── json.cpython-312.pyc │ │ │ │ ├── layout.cpython-312.pyc │ │ │ │ ├── live.cpython-312.pyc │ │ │ │ ├── markup.cpython-312.pyc │ │ │ │ ├── pager.cpython-312.pyc │ │ │ │ ├── panel.cpython-312.pyc │ │ │ │ ├── pretty.cpython-312.pyc │ │ │ │ ├── prompt.cpython-312.pyc │ │ │ │ ├── region.cpython-312.pyc │ │ │ │ ├── repr.cpython-312.pyc │ │ │ │ ├── rule.cpython-312.pyc │ │ │ │ ├── scope.cpython-312.pyc │ │ │ │ ├── screen.cpython-312.pyc │ │ │ │ ├── status.cpython-312.pyc │ │ │ │ ├── style.cpython-312.pyc │ │ │ │ ├── styled.cpython-312.pyc │ │ │ │ ├── syntax.cpython-312.pyc │ │ │ │ ├── table.cpython-312.pyc │ │ │ │ ├── text.cpython-312.pyc │ │ │ │ ├── theme.cpython-312.pyc │ │ │ │ ├── themes.cpython-312.pyc │ │ │ │ ├── tree.cpython-312.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ ├── _fileno.cpython-312.pyc │ │ │ │ ├── _inspect.cpython-312.pyc │ │ │ │ ├── _windows.cpython-312.pyc │ │ │ │ ├── columns.cpython-312.pyc │ │ │ │ ├── console.cpython-312.pyc │ │ │ │ ├── control.cpython-312.pyc │ │ │ │ ├── diagnose.cpython-312.pyc │ │ │ │ ├── filesize.cpython-312.pyc │ │ │ │ ├── jupyter.cpython-312.pyc │ │ │ │ ├── logging.cpython-312.pyc │ │ │ │ ├── measure.cpython-312.pyc │ │ │ │ ├── padding.cpython-312.pyc │ │ │ │ ├── palette.cpython-312.pyc │ │ │ │ ├── progress.cpython-312.pyc │ │ │ │ ├── protocol.cpython-312.pyc │ │ │ │ ├── segment.cpython-312.pyc │ │ │ │ └── spinner.cpython-312.pyc │ │ ├── cachecontrol │ │ │ └── py.typed │ │ ├── packaging │ │ │ └── py.typed │ │ ├── platformdirs │ │ │ └── py.typed │ │ ├── resolvelib │ │ │ ├── py.typed │ │ │ └── compat │ │ │ │ └── __init__.py │ │ ├── truststore │ │ │ └── py.typed │ │ ├── urllib3 │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ └── _securetransport │ │ │ │ │ └── __init__.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ └── backports │ │ │ │ │ └── __init__.py │ │ │ └── _version.py │ │ ├── tomli │ │ │ ├── py.typed │ │ │ └── __pycache__ │ │ │ │ ├── _re.cpython-312.pyc │ │ │ │ ├── _parser.cpython-312.pyc │ │ │ │ └── _types.cpython-312.pyc │ │ ├── distlib │ │ │ ├── t32.exe │ │ │ ├── t64.exe │ │ │ ├── w32.exe │ │ │ ├── w64.exe │ │ │ ├── t64-arm.exe │ │ │ ├── w64-arm.exe │ │ │ └── __pycache__ │ │ │ │ ├── index.cpython-312.pyc │ │ │ │ ├── util.cpython-312.pyc │ │ │ │ └── wheel.cpython-312.pyc │ │ ├── __pycache__ │ │ │ └── __init__.cpython-312.pyc │ │ ├── msgpack │ │ │ └── __pycache__ │ │ │ │ └── ext.cpython-312.pyc │ │ ├── pygments │ │ │ └── __pycache__ │ │ │ │ └── util.cpython-312.pyc │ │ └── requests │ │ │ └── __pycache__ │ │ │ ├── api.cpython-312.pyc │ │ │ ├── auth.cpython-312.pyc │ │ │ └── help.cpython-312.pyc │ │ ├── _internal │ │ ├── utils │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── _log.cpython-312.pyc │ │ │ │ ├── glibc.cpython-312.pyc │ │ │ │ ├── misc.cpython-312.pyc │ │ │ │ ├── retry.cpython-312.pyc │ │ │ │ ├── urls.cpython-312.pyc │ │ │ │ └── wheel.cpython-312.pyc │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── build │ │ │ │ └── __init__.py │ │ │ └── install │ │ │ │ └── __init__.py │ │ ├── resolution │ │ │ ├── __init__.py │ │ │ ├── legacy │ │ │ │ └── __init__.py │ │ │ └── resolvelib │ │ │ │ └── __init__.py │ │ ├── index │ │ │ └── __init__.py │ │ ├── network │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── link.cpython-312.pyc │ │ ├── __pycache__ │ │ │ ├── main.cpython-312.pyc │ │ │ ├── cache.cpython-312.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── build_env.cpython-312.pyc │ │ │ ├── pyproject.cpython-312.pyc │ │ │ └── exceptions.cpython-312.pyc │ │ ├── cli │ │ │ ├── status_codes.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── main.cpython-312.pyc │ │ │ │ └── parser.cpython-312.pyc │ │ ├── vcs │ │ │ └── __pycache__ │ │ │ │ ├── git.cpython-312.pyc │ │ │ │ └── bazaar.cpython-312.pyc │ │ └── req │ │ │ └── __pycache__ │ │ │ └── req_set.cpython-312.pyc │ │ └── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── __main__.cpython-312.pyc │ │ └── __pip-runner__.cpython-312.pyc └── Scripts │ ├── pip.exe │ ├── pip3.exe │ ├── pip3.12.exe │ ├── python.exe │ └── pythonw.exe ├── PostgreSQL └── requirements.txt ├── README.md ├── code_maze └── requirements.txt ├── crossing_game ├── readme.txt └── __pycache__ │ ├── player.cpython-313.pyc │ ├── scoreboard.cpython-313.pyc │ └── car_manager.cpython-313.pyc ├── instance ├── cafes.db ├── users.db └── books-collection.db ├── RestfulAPI ├── .DS_Store ├── requirements.txt └── instance │ └── cafes.db ├── SQLLite_flask ├── requirements.txt └── .DS_Store ├── PomodoroApp └── tomato.png ├── raulNath_webScraping └── requirements.txt ├── Flask ├── static │ ├── images │ │ ├── bg.jpg │ │ ├── avatar.jpg │ │ ├── icon.png │ │ ├── fulls │ │ │ ├── 01.png │ │ │ ├── 02.jpeg │ │ │ ├── 03.jpeg │ │ │ ├── 04.jpeg │ │ │ ├── 05.jpeg │ │ │ └── 06.jpeg │ │ └── thumbs │ │ │ ├── 01.png │ │ │ ├── 02.jpeg │ │ │ ├── 03.jpeg │ │ │ ├── 04.jpeg │ │ │ ├── 05.jpeg │ │ │ └── 06.jpeg │ └── assets │ │ ├── css │ │ └── images │ │ │ └── overlay.png │ │ └── webfonts │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.ttf │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-solid-900.woff2 │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.woff │ │ └── fa-regular-400.woff2 └── templates │ └── index.html ├── 50_states └── blank_states_img.gif ├── 2018_central_park_squirel_data └── Squirrel Count.csv ├── __pycache__ └── Fast_api.cpython-312.pyc ├── JWT_and_Auth └── __pycache__ │ └── main.cpython-313.pyc ├── snake_game └── __pycache__ │ ├── food.cpython-313.pyc │ ├── snake.cpython-313.pyc │ └── scoreboard.cpython-313.pyc ├── tkinterProjects ├── Flash_card_app │ └── images │ │ ├── right.png │ │ ├── wrong.png │ │ ├── card_back.png │ │ └── card_front.png └── GUI_Password_Reset_App │ └── logo.png ├── Fastapi_projects └── __pycache__ │ └── first_main.cpython-312.pyc ├── Quiz_Game └── question_model.py ├── API_Related_Projects └── Trivia_App │ └── question_model.py └── .idea └── vcs.xml /.venv/Lib/site-packages/click/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/bcrypt/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/blinker/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/markupsafe/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/itsdangerous/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask_sqlalchemy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/platform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip-24.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distro/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/sansio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip-24.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/distro/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask-3.0.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/cachecontrol/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/platformdirs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/resolvelib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/truststore/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/cachecontrol/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/platformdirs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/resolvelib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/truststore/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/Flask_Bcrypt-1.0.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/SQLAlchemy-2.0.25.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click-8.1.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask-3.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip-24.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip-24.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/MarkupSafe-2.1.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/bcrypt-4.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/blinker-1.8.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama-0.4.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask_sqlalchemy-3.1.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet-3.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2-3.1.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip-24.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug-3.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip-24.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/Flask_Bcrypt-1.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/SQLAlchemy-2.0.25.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/bcrypt-4.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | bcrypt 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click-8.1.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/itsdangerous-2.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask_sqlalchemy-3.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet-3.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | greenlet 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/typing_extensions-4.12.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/Flask_Bcrypt-1.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask_bcrypt 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/MarkupSafe-2.1.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | markupsafe 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/SQLAlchemy-2.0.25.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sqlalchemy 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__main__.py: -------------------------------------------------------------------------------- 1 | from .cli import main 2 | 3 | main() 4 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/tomli/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/tomli/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.7' 2 | 3 | -------------------------------------------------------------------------------- /PostgreSQL/requirements.txt: -------------------------------------------------------------------------------- 1 | psycopg>=3.2.3 2 | tzdata>=2024.2 # Required by psycopg 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # python 2 | These are my small projects in Python programming language 3 | -------------------------------------------------------------------------------- /code_maze/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.12.2 2 | selenium==4.11.2 3 | pymongo==4.8.0 -------------------------------------------------------------------------------- /crossing_game/readme.txt: -------------------------------------------------------------------------------- 1 | This game will help you to create crossing game, enjoy :) 2 | -------------------------------------------------------------------------------- /instance/cafes.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/instance/cafes.db -------------------------------------------------------------------------------- /instance/users.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/instance/users.db -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.7' 2 | 3 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /RestfulAPI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/RestfulAPI/.DS_Store -------------------------------------------------------------------------------- /SQLLite_flask/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==3.0.0 2 | flask_sqlalchemy==3.1.1 3 | SQLAlchemy==2.0.25 -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /.venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Scripts/pip.exe -------------------------------------------------------------------------------- /.venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /PomodoroApp/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/PomodoroApp/tomato.png -------------------------------------------------------------------------------- /myenv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Scripts/pip.exe -------------------------------------------------------------------------------- /myenv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Scripts/pip3.exe -------------------------------------------------------------------------------- /.venv/Scripts/flask.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Scripts/flask.exe -------------------------------------------------------------------------------- /.venv/Scripts/pip3.12.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Scripts/pip3.12.exe -------------------------------------------------------------------------------- /.venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Scripts/python.exe -------------------------------------------------------------------------------- /.venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /SQLLite_flask/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/SQLLite_flask/.DS_Store -------------------------------------------------------------------------------- /myenv/Scripts/pip3.12.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Scripts/pip3.12.exe -------------------------------------------------------------------------------- /myenv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Scripts/python.exe -------------------------------------------------------------------------------- /myenv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /raulNath_webScraping/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.12.2 2 | selenium==4.11.2 3 | pymongo==4.8.0 -------------------------------------------------------------------------------- /Flask/static/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/bg.jpg -------------------------------------------------------------------------------- /RestfulAPI/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/RestfulAPI/requirements.txt -------------------------------------------------------------------------------- /50_states/blank_states_img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/50_states/blank_states_img.gif -------------------------------------------------------------------------------- /Flask/static/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/avatar.jpg -------------------------------------------------------------------------------- /Flask/static/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/icon.png -------------------------------------------------------------------------------- /RestfulAPI/instance/cafes.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/RestfulAPI/instance/cafes.db -------------------------------------------------------------------------------- /instance/books-collection.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/instance/books-collection.db -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask-3.0.3.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | flask=flask.cli:main 3 | 4 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /Flask/static/images/fulls/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/fulls/01.png -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /Flask/static/images/fulls/02.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/fulls/02.jpeg -------------------------------------------------------------------------------- /Flask/static/images/fulls/03.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/fulls/03.jpeg -------------------------------------------------------------------------------- /Flask/static/images/fulls/04.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/fulls/04.jpeg -------------------------------------------------------------------------------- /Flask/static/images/fulls/05.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/fulls/05.jpeg -------------------------------------------------------------------------------- /Flask/static/images/fulls/06.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/fulls/06.jpeg -------------------------------------------------------------------------------- /Flask/static/images/thumbs/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/thumbs/01.png -------------------------------------------------------------------------------- /Flask/static/images/thumbs/02.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/thumbs/02.jpeg -------------------------------------------------------------------------------- /Flask/static/images/thumbs/03.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/thumbs/03.jpeg -------------------------------------------------------------------------------- /Flask/static/images/thumbs/04.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/thumbs/04.jpeg -------------------------------------------------------------------------------- /Flask/static/images/thumbs/05.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/thumbs/05.jpeg -------------------------------------------------------------------------------- /Flask/static/images/thumbs/06.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/images/thumbs/06.jpeg -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.18" 3 | -------------------------------------------------------------------------------- /2018_central_park_squirel_data/Squirrel Count.csv: -------------------------------------------------------------------------------- 1 | ,Squirrel Color,Count 2 | 0,Gray,2473 3 | 1,Black,103 4 | 2,Cinnamon,392 5 | -------------------------------------------------------------------------------- /__pycache__/Fast_api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/__pycache__/Fast_api.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.18" 3 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2-3.1.4.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [babel.extractors] 2 | jinja2=jinja2.ext:babel_extract[i18n] 3 | 4 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/bcrypt/_bcrypt.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/bcrypt/_bcrypt.pyd -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distro/__main__.py: -------------------------------------------------------------------------------- 1 | from .distro import main 2 | 3 | if __name__ == "__main__": 4 | main() 5 | -------------------------------------------------------------------------------- /Flask/static/assets/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/css/images/overlay.png -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/distro/__main__.py: -------------------------------------------------------------------------------- 1 | from .distro import main 2 | 3 | if __name__ == "__main__": 4 | main() 5 | -------------------------------------------------------------------------------- /Flask/static/assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /Flask/static/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /JWT_and_Auth/__pycache__/main.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/JWT_and_Auth/__pycache__/main.cpython-313.pyc -------------------------------------------------------------------------------- /snake_game/__pycache__/food.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/snake_game/__pycache__/food.cpython-313.pyc -------------------------------------------------------------------------------- /snake_game/__pycache__/snake.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/snake_game/__pycache__/snake.cpython-313.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask-3.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /Flask/static/assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /Flask/static/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /Flask/static/assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /Flask/static/assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /Flask/static/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /Flask/static/assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /Flask/static/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /tkinterProjects/Flash_card_app/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/tkinterProjects/Flash_card_app/images/right.png -------------------------------------------------------------------------------- /tkinterProjects/Flash_card_app/images/wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/tkinterProjects/Flash_card_app/images/wrong.png -------------------------------------------------------------------------------- /tkinterProjects/GUI_Password_Reset_App/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/tkinterProjects/GUI_Password_Reset_App/logo.png -------------------------------------------------------------------------------- /.venv/Lib/site-packages/blinker-1.8.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2-3.1.4.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug-3.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /Flask/static/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /Flask/static/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /Flask/static/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Flask/static/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /crossing_game/__pycache__/player.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/crossing_game/__pycache__/player.cpython-313.pyc -------------------------------------------------------------------------------- /snake_game/__pycache__/scoreboard.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/snake_game/__pycache__/scoreboard.cpython-313.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/itsdangerous-2.2.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip-24.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal.cli.main:main 3 | pip3 = pip._internal.cli.main:main 4 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /crossing_game/__pycache__/scoreboard.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/crossing_game/__pycache__/scoreboard.cpython-313.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip-24.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal.cli.main:main 3 | pip3 = pip._internal.cli.main:main 4 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /tkinterProjects/Flash_card_app/images/card_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/tkinterProjects/Flash_card_app/images/card_back.png -------------------------------------------------------------------------------- /tkinterProjects/Flash_card_app/images/card_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/tkinterProjects/Flash_card_app/images/card_front.png -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click-8.1.7.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.41.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask_sqlalchemy-3.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip-24.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (71.1.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe -------------------------------------------------------------------------------- /.venv/Lib/site-packages/typing_extensions-4.12.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/debug/shared/less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/debug/shared/less.png -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/debug/shared/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/debug/shared/more.png -------------------------------------------------------------------------------- /Fastapi_projects/__pycache__/first_main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/Fastapi_projects/__pycache__/first_main.cpython-312.pyc -------------------------------------------------------------------------------- /crossing_game/__pycache__/car_manager.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/crossing_game/__pycache__/car_manager.cpython-313.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip-24.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (71.1.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __all__ = ["contents", "where"] 4 | __version__ = "2024.07.04" 5 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/debug/shared/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/debug/shared/console.png -------------------------------------------------------------------------------- /Quiz_Game/question_model.py: -------------------------------------------------------------------------------- 1 | class Question: 2 | def __init__(self, text, answer): 3 | self.text = text 4 | self.answer = answer 5 | 6 | 7 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __all__ = ["contents", "where"] 4 | __version__ = "2024.07.04" 5 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/Flask_Bcrypt-1.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/bcrypt-4.2.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.43.0) 3 | Root-Is-Purelib: false 4 | Tag: cp39-abi3-win_amd64 5 | 6 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- 1 | from .default_styles import DEFAULT_STYLES 2 | from .theme import Theme 3 | 4 | 5 | DEFAULT = Theme(DEFAULT_STYLES) 6 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- 1 | from .default_styles import DEFAULT_STYLES 2 | from .theme import Theme 3 | 4 | 5 | DEFAULT = Theme(DEFAULT_STYLES) 6 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/MarkupSafe-2.1.5.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.42.0) 3 | Root-Is-Purelib: false 4 | Tag: cp312-cp312-win_amd64 5 | 6 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/core.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/core.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/app.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/app.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/cli.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/cli.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/ctx.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/ctx.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet-3.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.42.0) 3 | Root-Is-Purelib: false 4 | Tag: cp312-cp312-win_amd64 5 | 6 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/_greenlet.cp312-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/_greenlet.cp312-win_amd64.pyd -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/platform/switch_x64_masm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/platform/switch_x64_masm.obj -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/ext.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/ext.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/SQLAlchemy-2.0.25.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.42.0) 3 | Root-Is-Purelib: false 4 | Tag: cp312-cp312-win_amd64 5 | 6 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/__pycache__/flask_bcrypt.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/__pycache__/flask_bcrypt.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/blinker/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/blinker/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/_compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/_compat.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/globals.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/globals.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/parser.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/termui.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/termui.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/testing.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/testing.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/types.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/types.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama-0.4.6.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: hatchling 1.11.1 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama/__pycache__/ansi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/colorama/__pycache__/ansi.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/config.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/config.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/globals.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/globals.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/helpers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/helpers.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/logging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/logging.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/signals.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/signals.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/testing.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/testing.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/typing.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/typing.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/views.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/views.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/platform/switch_arm64_masm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/platform/switch_arm64_masm.obj -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/debug.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/debug.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/lexer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/lexer.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/meta.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/meta.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/nodes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/nodes.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/parser.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/tests.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/tests.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/markupsafe/_speedups.cp312-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/markupsafe/_speedups.cp312-win_amd64.pyd -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/http.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/http.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/test.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/test.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/wsgi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/wsgi.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/bcrypt/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/bcrypt/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/_textwrap.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/_textwrap.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama/__pycache__/win32.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/colorama/__pycache__/win32.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/sessions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/sessions.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/wrappers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/wrappers.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/json/__pycache__/tag.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/json/__pycache__/tag.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/bccache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/bccache.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/compiler.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/compiler.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/defaults.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/defaults.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/filters.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/filters.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/loaders.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/loaders.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/runtime.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/runtime.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/sandbox.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/sandbox.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/visitor.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/visitor.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/__pycache__/exc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/__pycache__/exc.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/__pycache__/log.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/__pycache__/log.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/local.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/local.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /API_Related_Projects/Trivia_App/question_model.py: -------------------------------------------------------------------------------- 1 | class Question: 2 | 3 | def __init__(self, q_text, q_answer): 4 | self.text = q_text 5 | self.answer = q_answer 6 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/__pycache__/typing_extensions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/__pycache__/typing_extensions.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/blinker/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/blinker/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/blinker/__pycache__/_utilities.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/blinker/__pycache__/_utilities.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/_termui_impl.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/_termui_impl.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/_winconsole.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/_winconsole.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/decorators.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/decorators.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/formatting.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/formatting.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/colorama/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama/__pycache__/winterm.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/colorama/__pycache__/winterm.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/blueprints.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/blueprints.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/debughelpers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/debughelpers.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/__pycache__/templating.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/__pycache__/templating.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/sansio/__pycache__/app.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/sansio/__pycache__/app.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/itsdangerous/__pycache__/_json.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/itsdangerous/__pycache__/_json.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/itsdangerous/__pycache__/exc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/itsdangerous/__pycache__/exc.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/itsdangerous/__pycache__/timed.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/itsdangerous/__pycache__/timed.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/_identifier.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/_identifier.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/async_utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/async_utils.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/constants.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/constants.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/environment.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/environment.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/idtracking.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/idtracking.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/nativetypes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/nativetypes.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/jinja2/__pycache__/optimizer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/jinja2/__pycache__/optimizer.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/markupsafe/__pycache__/_native.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/markupsafe/__pycache__/_native.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/__pycache__/events.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/__pycache__/events.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/__pycache__/schema.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/__pycache__/schema.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/__pycache__/types.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/__pycache__/types.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/exc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/exc.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/ddl.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/ddl.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/dml.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/dml.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/_internal.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/_internal.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/_reloader.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/_reloader.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/security.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/security.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/serving.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/serving.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/testapp.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/testapp.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama/__pycache__/ansitowin32.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/colorama/__pycache__/ansitowin32.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama/__pycache__/initialise.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/colorama/__pycache__/initialise.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama/tests/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/colorama/tests/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/json/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/json/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/json/__pycache__/provider.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/json/__pycache__/provider.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/cli.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/cli.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/itsdangerous/__pycache__/signer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/itsdangerous/__pycache__/signer.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/markupsafe/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/markupsafe/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | SUCCESS = 0 2 | ERROR = 1 3 | UNKNOWN_ERROR = 2 4 | VIRTUALENV_NOT_FOUND = 3 5 | PREVIOUS_BUILD_DIR_ERROR = 4 6 | NO_MATCHES_FOUND = 23 7 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/cyextension/util.cp312-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/cyextension/util.cp312-win_amd64.pyd -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/event/__pycache__/api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/event/__pycache__/api.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/baked.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/baked.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/query.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/query.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/state.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/state.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/sync.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/sync.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/pool/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/pool/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/pool/__pycache__/impl.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/pool/__pycache__/impl.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/crud.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/crud.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/roles.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/roles.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/formparser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/formparser.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/__pycache__/user_agent.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/__pycache__/user_agent.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/debug/__pycache__/repr.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/debug/__pycache__/repr.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/routing/__pycache__/map.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/routing/__pycache__/map.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/sansio/__pycache__/http.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/sansio/__pycache__/http.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | SUCCESS = 0 2 | ERROR = 1 3 | UNKNOWN_ERROR = 2 4 | VIRTUALENV_NOT_FOUND = 3 5 | PREVIOUS_BUILD_DIR_ERROR = 4 6 | NO_MATCHES_FOUND = 23 7 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/click/__pycache__/shell_completion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/click/__pycache__/shell_completion.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama/tests/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/colorama/tests/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/sansio/__pycache__/blueprints.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/sansio/__pycache__/blueprints.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask/sansio/__pycache__/scaffold.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask/sansio/__pycache__/scaffold.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/model.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/model.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/query.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/query.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/table.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/table.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/tests/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/tests/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/tests/__pycache__/test_cpp.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/tests/__pycache__/test_cpp.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/tests/__pycache__/test_gc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/tests/__pycache__/test_gc.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/tests/_test_extension.cp312-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/tests/_test_extension.cp312-win_amd64.pyd -------------------------------------------------------------------------------- /.venv/Lib/site-packages/itsdangerous/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/itsdangerous/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/itsdangerous/__pycache__/encoding.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/itsdangerous/__pycache__/encoding.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/itsdangerous/__pycache__/serializer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/itsdangerous/__pycache__/serializer.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/itsdangerous/__pycache__/url_safe.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/itsdangerous/__pycache__/url_safe.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/__pycache__/inspection.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/__pycache__/inspection.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/mock.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/mock.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/row.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/row.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/url.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/url.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/event/__pycache__/attr.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/event/__pycache__/attr.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/event/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/event/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/event/__pycache__/legacy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/event/__pycache__/legacy.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/automap.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/automap.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/compiler.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/compiler.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/hybrid.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/hybrid.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/mutable.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/mutable.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/_typing.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/_typing.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/context.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/context.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/decl_api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/decl_api.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/dynamic.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/dynamic.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/events.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/events.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/identity.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/identity.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/loading.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/loading.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/mapper.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/mapper.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/scoping.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/scoping.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/session.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/session.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/pool/__pycache__/events.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/pool/__pycache__/events.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/_py_util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/_py_util.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/_typing.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/_typing.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/compiler.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/compiler.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/elements.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/elements.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/events.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/events.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/lambdas.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/lambdas.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/naming.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/naming.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/schema.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/schema.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/sqltypes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/sqltypes.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/type_api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/type_api.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/visitors.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/visitors.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/testing/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/testing/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/util/__pycache__/_has_cy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/util/__pycache__/_has_cy.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/util/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/util/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/util/__pycache__/queue.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/util/__pycache__/queue.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/util/__pycache__/typing.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/util/__pycache__/typing.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/debug/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/debug/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/debug/__pycache__/console.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/debug/__pycache__/console.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/debug/__pycache__/tbtools.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/debug/__pycache__/tbtools.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/routing/__pycache__/rules.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/routing/__pycache__/rules.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/sansio/__pycache__/request.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/sansio/__pycache__/request.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/sansio/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/sansio/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | from .request import Request as Request 2 | from .response import Response as Response 3 | from .response import ResponseStream as ResponseStream 4 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama/tests/__pycache__/ansi_test.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/colorama/tests/__pycache__/ansi_test.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/session.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/session.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/tests/__pycache__/leakcheck.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/tests/__pycache__/leakcheck.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/tests/__pycache__/test_leaks.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/tests/__pycache__/test_leaks.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/tests/__pycache__/test_throw.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/tests/__pycache__/test_throw.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/cyextension/processors.cp312-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/cyextension/processors.cp312-win_amd64.pyd -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/_py_row.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/_py_row.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/create.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/create.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/cursor.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/cursor.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/default.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/default.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/events.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/events.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/result.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/engine/__pycache__/result.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/event/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/event/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/event/__pycache__/registry.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/event/__pycache__/registry.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/indexable.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/indexable.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/serializer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/ext/__pycache__/serializer.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/ext/mypy/__pycache__/apply.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/ext/mypy/__pycache__/apply.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/ext/mypy/__pycache__/infer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/ext/mypy/__pycache__/infer.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/ext/mypy/__pycache__/names.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/ext/mypy/__pycache__/names.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/ext/mypy/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/ext/mypy/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/future/__pycache__/engine.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/future/__pycache__/engine.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/attributes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/attributes.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/decl_base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/decl_base.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/dependency.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/dependency.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/evaluator.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/evaluator.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/interfaces.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/interfaces.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/properties.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/properties.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/strategies.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/strategies.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/unitofwork.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/unitofwork.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/writeonly.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/orm/__pycache__/writeonly.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/pool/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/pool/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/_orm_types.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/_orm_types.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/annotation.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/annotation.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/cache_key.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/cache_key.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/coercions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/coercions.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/expression.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/expression.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/functions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/functions.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/operators.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/operators.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/selectable.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/selectable.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/traversals.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/sql/__pycache__/traversals.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/testing/__pycache__/config.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/testing/__pycache__/config.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/testing/__pycache__/schema.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/testing/__pycache__/schema.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/util/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/util/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/sqlalchemy/util/__pycache__/preloaded.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/sqlalchemy/util/__pycache__/preloaded.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/middleware/__pycache__/lint.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/middleware/__pycache__/lint.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/routing/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/routing/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/routing/__pycache__/matcher.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/routing/__pycache__/matcher.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/sansio/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/sansio/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/sansio/__pycache__/multipart.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/sansio/__pycache__/multipart.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/sansio/__pycache__/response.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/sansio/__pycache__/response.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/werkzeug/wrappers/__pycache__/request.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/werkzeug/wrappers/__pycache__/request.cpython-312.pyc -------------------------------------------------------------------------------- /Flask/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <h1>Main page</h1> 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/myenv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama/tests/__pycache__/isatty_test.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/colorama/tests/__pycache__/isatty_test.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/colorama/tests/__pycache__/winterm_test.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/colorama/tests/__pycache__/winterm_test.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/extension.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/extension.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/pagination.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/flask_sqlalchemy/__pycache__/pagination.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/platform/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/platform/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/tests/__pycache__/test_greenlet.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/tests/__pycache__/test_greenlet.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/tests/__pycache__/test_tracing.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/tests/__pycache__/test_tracing.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/tests/__pycache__/test_version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/tests/__pycache__/test_version.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/tests/__pycache__/test_weakref.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/tests/__pycache__/test_weakref.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/greenlet/tests/_test_extension_cpp.cp312-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/greenlet/tests/_test_extension_cpp.cp312-win_amd64.pyd -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautaroIed/python/HEAD/.venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc --------------------------------------------------------------------------------