orionis 0.547.0__tar.gz → 0.549.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {orionis-0.547.0/orionis.egg-info → orionis-0.549.0}/PKG-INFO +1 -1
- orionis-0.549.0/orionis/console/contracts/cli_request.py +174 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/request/cli_request.py +95 -1
- {orionis-0.547.0 → orionis-0.549.0}/orionis/metadata/framework.py +1 -1
- {orionis-0.547.0 → orionis-0.549.0/orionis.egg-info}/PKG-INFO +1 -1
- {orionis-0.547.0 → orionis-0.549.0}/orionis.egg-info/SOURCES.txt +1 -1
- {orionis-0.547.0 → orionis-0.549.0}/setup.py +1 -1
- orionis-0.547.0/orionis/console/contracts/cli_request.py +0 -85
- {orionis-0.547.0 → orionis-0.549.0}/LICENCE +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/MANIFEST.in +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/README.md +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/app.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/args/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/args/argument.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/base/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/base/command.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/base/scheduler.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/base/scheduler_event_listener.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/commands/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/commands/cache.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/commands/help.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/commands/make_listener.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/commands/publisher.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/commands/scheduler_list.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/commands/scheduler_work.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/commands/test.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/commands/version.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/commands/workflow.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/base_command.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/base_scheduler.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/command.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/console.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/dump.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/event.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/executor.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/kernel.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/progress_bar.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/reactor.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/schedule.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/contracts/schedule_event_listener.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/core/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/core/reactor.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/dumper/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/dumper/dump.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/dynamic/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/dynamic/progress_bar.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/all_jobs_removed.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/command.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/event.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/event_job.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/executor_added.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/executor_removed.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_added.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_error.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_event_data.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_executed.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_max_instances.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_missed.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_modified.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_pause.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_removed.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_resume.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_store_added.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_store_removed.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/job_submitted.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/scheduler_error.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/scheduler_event_data.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/scheduler_paused.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/scheduler_resumed.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/scheduler_shutdown.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/entities/scheduler_started.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/enums/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/enums/actions.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/enums/listener.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/enums/styles.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/exceptions/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/exceptions/cli_exception.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/exceptions/cli_orionis_value_error.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/exceptions/cli_runtime_error.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/exceptions/cli_schedule_exception.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/fluent/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/fluent/command.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/fluent/event.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/kernel.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/output/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/output/console.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/output/executor.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/request/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/tasks/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/console/tasks/schedule.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/container.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/context/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/context/manager.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/context/scope.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/contracts/container.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/contracts/service_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/entities/binding.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/enums/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/enums/lifetimes.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/exceptions/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/exceptions/attribute.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/exceptions/exception.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/exceptions/type.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/exceptions/value.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/facades/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/facades/facade.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/providers/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/providers/service_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/validators/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/validators/implements.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/validators/is_abstract_class.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/validators/is_callable.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/validators/is_concrete_class.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/validators/is_instance.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/validators/is_not_subclass.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/validators/is_subclass.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/validators/is_valid_alias.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/container/validators/lifetime.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/failure/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/failure/base/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/failure/base/handler.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/failure/catch.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/failure/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/failure/contracts/catch.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/failure/contracts/handler.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/failure/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/failure/entities/throwable.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/application.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/app/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/app/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/app/entities/app.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/app/enums/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/app/enums/ciphers.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/app/enums/environments.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/auth/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/auth/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/auth/entities/auth.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/cache/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/cache/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/cache/entities/cache.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/cache/entities/file.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/cache/entities/stores.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/cache/enums/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/cache/enums/drivers.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/cors/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/cors/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/cors/entities/cors.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/entities/connections.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/entities/database.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/entities/mysql.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/entities/oracle.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/entities/pgsql.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/entities/sqlite.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/enums/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/enums/mysql_charsets.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/enums/mysql_collations.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/enums/mysql_engine.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/enums/oracle_encoding.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/enums/oracle_nencoding.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/enums/pgsql_charsets.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/enums/pgsql_collations.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/enums/pgsql_mode.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/enums/sqlite_foreign_key.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/enums/sqlite_journal.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/database/enums/sqlite_synchronous.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/filesystems/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/filesystems/entitites/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/filesystems/entitites/aws.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/filesystems/entitites/disks.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/filesystems/entitites/filesystems.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/filesystems/entitites/local.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/filesystems/entitites/public.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/entities/channels.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/entities/chunked.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/entities/daily.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/entities/hourly.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/entities/logging.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/entities/monthly.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/entities/stack.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/entities/weekly.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/enums/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/enums/levels.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/validators/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/validators/level.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/logging/validators/path.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/mail/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/mail/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/mail/entities/file.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/mail/entities/mail.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/mail/entities/mailers.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/mail/entities/smtp.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/queue/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/queue/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/queue/entities/brokers.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/queue/entities/database.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/queue/entities/queue.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/queue/enums/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/queue/enums/strategy.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/roots/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/roots/paths.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/session/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/session/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/session/entities/session.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/session/enums/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/session/enums/same_site_policy.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/session/helpers/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/session/helpers/secret_key.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/startup.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/testing/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/testing/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/testing/entities/testing.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/testing/enums/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/testing/enums/drivers.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/testing/enums/mode.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/config/testing/enums/verbosity.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/contracts/application.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/contracts/config.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/exceptions/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/exceptions/integrity.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/exceptions/runtime.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/exceptions/type.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/exceptions/value.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/catch_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/cli_request_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/console_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/directory_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/dumper_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/executor_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/inspirational_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/logger_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/performance_counter_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/progress_bar_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/reactor_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/scheduler_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/testing_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/foundation/providers/workers_provider.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/metadata/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/metadata/package.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/asynchrony/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/asynchrony/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/asynchrony/contracts/coroutines.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/asynchrony/coroutines.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/asynchrony/exceptions/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/asynchrony/exceptions/exception.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/encrypter/encrypter.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/contracts/caster.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/contracts/env.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/core/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/core/dot_env.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/dynamic/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/dynamic/caster.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/enums/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/enums/value_type.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/env.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/exceptions/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/exceptions/exception.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/exceptions/value.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/helpers/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/helpers/functions.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/key/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/key/key_generator.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/validators/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/validators/key_name.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/environment/validators/types.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/file/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/file/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/file/contracts/directory.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/file/directory.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/inspirational/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/inspirational/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/inspirational/contracts/inspire.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/inspirational/inspire.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/inspirational/quotes.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/abstract/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/abstract/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/abstract/contracts/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/abstract/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/callables/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/callables/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/callables/contracts/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/callables/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/concretes/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/concretes/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/concretes/contracts/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/concretes/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/dataclass/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/dataclass/attributes.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/dependencies/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/dependencies/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/dependencies/contracts/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/dependencies/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/dependencies/entities/argument.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/dependencies/entities/resolve_argument.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/dependencies/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/exceptions/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/exceptions/attribute.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/exceptions/type.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/exceptions/value.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/instances/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/instances/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/instances/contracts/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/instances/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/modules/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/modules/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/modules/contracts/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/modules/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/objects/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/objects/types.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/introspection/reflection.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/log/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/log/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/log/contracts/log_service.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/log/exceptions/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/log/exceptions/runtime.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/log/handlers/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/log/handlers/filename.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/log/handlers/size_rotating.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/log/handlers/timed_rotating.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/log/log_service.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/system/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/system/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/system/contracts/imports.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/system/contracts/workers.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/system/imports.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/system/runtime/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/system/runtime/imports.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/services/system/workers.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/entities/base.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/application.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/application.pyi +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/console.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/console.pyi +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/directory.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/directory.pyi +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/dumper.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/dumper.pyi +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/executor.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/executor.pyi +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/inspire.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/inspire.pyi +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/logger.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/logger.pyi +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/performance_counter.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/performance_counter.pyi +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/progress_bar.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/progress_bar.pyi +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/reactor.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/reactor.pyi +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/testing.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/testing.pyi +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/workers.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/facades/workers.pyi +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/formatter/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/formatter/exceptions/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/formatter/exceptions/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/formatter/exceptions/contracts/parser.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/formatter/exceptions/parser.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/formatter/serializer.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/patterns/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/patterns/singleton/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/patterns/singleton/meta.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/performance/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/performance/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/performance/contracts/counter.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/performance/counter.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/standard/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/standard/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/standard/contracts/std.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/standard/exceptions/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/standard/exceptions/value.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/standard/std.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/wrapper/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/support/wrapper/dot_dict.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/cases/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/cases/asynchronous.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/cases/synchronous.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/contracts/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/contracts/dumper.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/contracts/kernel.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/contracts/logs.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/contracts/printer.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/contracts/render.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/contracts/test_result.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/contracts/unit_test.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/core/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/core/unit_test.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/entities/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/entities/result.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/enums/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/enums/status.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/exceptions/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/exceptions/config.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/exceptions/failure.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/exceptions/persistence.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/exceptions/runtime.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/exceptions/value.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/kernel.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/output/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/output/dumper.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/output/printer.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/records/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/records/logs.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/base_path.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/execution_mode.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/fail_fast.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/folder_path.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/module_name.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/name_pattern.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/pattern.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/persistent.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/persistent_driver.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/print_result.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/tags.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/throw_exception.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/verbosity.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/web_report.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/validators/workers.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/view/__init__.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis/test/view/render.py +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis.egg-info/dependency_links.txt +0 -0
- /orionis-0.547.0/orionis.egg-info/zip-safe → /orionis-0.549.0/orionis.egg-info/not-zip-safe +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis.egg-info/requires.txt +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/orionis.egg-info/top_level.txt +0 -0
- {orionis-0.547.0 → orionis-0.549.0}/setup.cfg +0 -0
@@ -0,0 +1,174 @@
|
|
1
|
+
from abc import ABC, abstractmethod
|
2
|
+
from typing import Any
|
3
|
+
|
4
|
+
class ICLIRequest(ABC):
|
5
|
+
|
6
|
+
@abstractmethod
|
7
|
+
def command(self) -> str:
|
8
|
+
"""
|
9
|
+
Retrieve the command name associated with this CLI request.
|
10
|
+
|
11
|
+
This method provides access to the command string that was specified during
|
12
|
+
the initialization of the CLIRequest object. The command represents the
|
13
|
+
primary action or operation that should be executed based on the CLI input.
|
14
|
+
|
15
|
+
Returns
|
16
|
+
-------
|
17
|
+
str
|
18
|
+
The command name stored as a string. This is the exact command value
|
19
|
+
that was passed to the constructor during object initialization.
|
20
|
+
|
21
|
+
Notes
|
22
|
+
-----
|
23
|
+
The returned command string is immutable and represents the core action
|
24
|
+
identifier for this CLI request. This value is essential for determining
|
25
|
+
which operation should be performed by the CLI handler.
|
26
|
+
"""
|
27
|
+
pass
|
28
|
+
|
29
|
+
@abstractmethod
|
30
|
+
def all(self) -> dict:
|
31
|
+
"""
|
32
|
+
Retrieve all command line arguments as a complete dictionary.
|
33
|
+
|
34
|
+
This method provides access to the entire collection of command line arguments
|
35
|
+
that were passed during the initialization of the CLIRequest object. It returns
|
36
|
+
a reference to the internal arguments dictionary, allowing for comprehensive
|
37
|
+
access to all parsed CLI parameters.
|
38
|
+
|
39
|
+
Returns
|
40
|
+
-------
|
41
|
+
dict
|
42
|
+
A dictionary containing all the parsed command line arguments as key-value
|
43
|
+
pairs, where keys are argument names (str) and values are the corresponding
|
44
|
+
argument values of any type. If no arguments were provided during
|
45
|
+
initialization, returns an empty dictionary.
|
46
|
+
|
47
|
+
Notes
|
48
|
+
-----
|
49
|
+
This method returns a reference to the internal arguments dictionary rather
|
50
|
+
than a copy. Modifications to the returned dictionary will affect the
|
51
|
+
internal state of the CLIRequest object.
|
52
|
+
"""
|
53
|
+
pass
|
54
|
+
|
55
|
+
@abstractmethod
|
56
|
+
def argument(self, name: str, default: Any = None):
|
57
|
+
"""
|
58
|
+
Retrieve the value of a specific command line argument by its name.
|
59
|
+
|
60
|
+
This method provides access to individual command line arguments that were
|
61
|
+
passed during initialization. It safely retrieves argument values without
|
62
|
+
raising exceptions if the argument doesn't exist.
|
63
|
+
|
64
|
+
Parameters
|
65
|
+
----------
|
66
|
+
name : str
|
67
|
+
The name of the command line argument to retrieve. This should match
|
68
|
+
the key used when the argument was originally parsed and stored.
|
69
|
+
default : Any, optional
|
70
|
+
The default value to return if the specified argument name does not
|
71
|
+
exist in the arguments dictionary. Defaults to None.
|
72
|
+
|
73
|
+
Returns
|
74
|
+
-------
|
75
|
+
Any or None
|
76
|
+
The value associated with the specified argument name if it exists
|
77
|
+
in the arguments dictionary. Returns None if the argument name is
|
78
|
+
not found or was not provided during CLI execution.
|
79
|
+
|
80
|
+
Notes
|
81
|
+
-----
|
82
|
+
This method uses the dictionary's get() method to safely access values,
|
83
|
+
ensuring that missing arguments return None rather than raising a KeyError.
|
84
|
+
"""
|
85
|
+
pass
|
86
|
+
|
87
|
+
def getCWD(self) -> str:
|
88
|
+
"""
|
89
|
+
Retrieve the current working directory (CWD) as an absolute path.
|
90
|
+
|
91
|
+
This method returns the absolute path of the directory from which the Python process was started.
|
92
|
+
It is useful for determining the context in which the CLI command is being executed, especially
|
93
|
+
when dealing with relative file paths or when the working directory may affect application behavior.
|
94
|
+
|
95
|
+
Returns
|
96
|
+
-------
|
97
|
+
str
|
98
|
+
The absolute path to the current working directory as a string.
|
99
|
+
"""
|
100
|
+
pass
|
101
|
+
|
102
|
+
def getPID(self) -> int:
|
103
|
+
"""
|
104
|
+
Retrieve the process ID (PID) of the current Python process.
|
105
|
+
|
106
|
+
This method returns the unique identifier assigned by the operating system
|
107
|
+
to the currently running Python process. The PID can be useful for logging,
|
108
|
+
debugging, or managing process-related operations.
|
109
|
+
|
110
|
+
Returns
|
111
|
+
-------
|
112
|
+
int
|
113
|
+
The process ID (PID) of the current Python process as an integer.
|
114
|
+
"""
|
115
|
+
pass
|
116
|
+
|
117
|
+
def getParentPID(self) -> int:
|
118
|
+
"""
|
119
|
+
Retrieve the parent process ID (PPID) of the current Python process.
|
120
|
+
|
121
|
+
This method returns the process ID of the parent process that spawned the current
|
122
|
+
Python process. The parent process ID can be useful for tracking process hierarchies,
|
123
|
+
debugging, or managing process relationships in CLI applications.
|
124
|
+
|
125
|
+
Returns
|
126
|
+
-------
|
127
|
+
int
|
128
|
+
The parent process ID (PPID) as an integer. This value is assigned by the operating
|
129
|
+
system and uniquely identifies the parent process of the current Python process.
|
130
|
+
|
131
|
+
Notes
|
132
|
+
-----
|
133
|
+
The returned PPID is determined by the operating system and may vary depending on how
|
134
|
+
the Python process was started. If the parent process has terminated, the PPID may refer
|
135
|
+
to the init process or another system-defined process.
|
136
|
+
"""
|
137
|
+
pass
|
138
|
+
|
139
|
+
def getExecutable(self) -> str:
|
140
|
+
"""
|
141
|
+
Retrieve the absolute path to the Python interpreter executable.
|
142
|
+
|
143
|
+
This method returns the full filesystem path to the Python interpreter
|
144
|
+
that is currently executing the script. This can be useful for debugging,
|
145
|
+
spawning subprocesses, or determining the runtime environment.
|
146
|
+
|
147
|
+
Returns
|
148
|
+
-------
|
149
|
+
str
|
150
|
+
The absolute path to the Python executable as a string.
|
151
|
+
"""
|
152
|
+
pass
|
153
|
+
|
154
|
+
def getPlatform(self) -> str:
|
155
|
+
"""
|
156
|
+
Retrieve the name of the current operating system platform.
|
157
|
+
|
158
|
+
This method determines the name of the operating system on which the Python
|
159
|
+
interpreter is currently running. It uses the standard library's `platform`
|
160
|
+
module to obtain a human-readable string representing the platform, such as
|
161
|
+
'Windows', 'Linux', or 'Darwin' (for macOS).
|
162
|
+
|
163
|
+
Returns
|
164
|
+
-------
|
165
|
+
str
|
166
|
+
A string representing the name of the operating system platform. Typical
|
167
|
+
return values include 'Windows', 'Linux', or 'Darwin'.
|
168
|
+
|
169
|
+
Notes
|
170
|
+
-----
|
171
|
+
The returned value is determined by the underlying system and may vary
|
172
|
+
depending on the environment in which the code is executed.
|
173
|
+
"""
|
174
|
+
pass
|
@@ -218,4 +218,98 @@ class CLIRequest(ICLIRequest):
|
|
218
218
|
return default
|
219
219
|
|
220
220
|
# Return the value associated with the specified argument name
|
221
|
-
return self.__args.get(name, default)
|
221
|
+
return self.__args.get(name, default)
|
222
|
+
|
223
|
+
def getCWD(self) -> str:
|
224
|
+
"""
|
225
|
+
Retrieve the current working directory (CWD) as an absolute path.
|
226
|
+
|
227
|
+
This method returns the absolute path of the directory from which the Python process was started.
|
228
|
+
It is useful for determining the context in which the CLI command is being executed, especially
|
229
|
+
when dealing with relative file paths or when the working directory may affect application behavior.
|
230
|
+
|
231
|
+
Returns
|
232
|
+
-------
|
233
|
+
str
|
234
|
+
The absolute path to the current working directory as a string.
|
235
|
+
"""
|
236
|
+
import os # Import the os module to interact with the operating system
|
237
|
+
return os.getcwd() # Return the current working directory
|
238
|
+
|
239
|
+
def getPID(self) -> int:
|
240
|
+
"""
|
241
|
+
Retrieve the process ID (PID) of the current Python process.
|
242
|
+
|
243
|
+
This method returns the unique identifier assigned by the operating system
|
244
|
+
to the currently running Python process. The PID can be useful for logging,
|
245
|
+
debugging, or managing process-related operations.
|
246
|
+
|
247
|
+
Returns
|
248
|
+
-------
|
249
|
+
int
|
250
|
+
The process ID (PID) of the current Python process as an integer.
|
251
|
+
"""
|
252
|
+
import os # Import the os module to access operating system functionality
|
253
|
+
return os.getpid() # Return the current process ID
|
254
|
+
|
255
|
+
def getParentPID(self) -> int:
|
256
|
+
"""
|
257
|
+
Retrieve the parent process ID (PPID) of the current Python process.
|
258
|
+
|
259
|
+
This method returns the process ID of the parent process that spawned the current
|
260
|
+
Python process. The parent process ID can be useful for tracking process hierarchies,
|
261
|
+
debugging, or managing process relationships in CLI applications.
|
262
|
+
|
263
|
+
Returns
|
264
|
+
-------
|
265
|
+
int
|
266
|
+
The parent process ID (PPID) as an integer. This value is assigned by the operating
|
267
|
+
system and uniquely identifies the parent process of the current Python process.
|
268
|
+
|
269
|
+
Notes
|
270
|
+
-----
|
271
|
+
The returned PPID is determined by the operating system and may vary depending on how
|
272
|
+
the Python process was started. If the parent process has terminated, the PPID may refer
|
273
|
+
to the init process or another system-defined process.
|
274
|
+
"""
|
275
|
+
import os # Import the os module to interact with the operating system
|
276
|
+
return os.getppid() # Return the parent process ID of the current process
|
277
|
+
|
278
|
+
def getExecutable(self) -> str:
|
279
|
+
"""
|
280
|
+
Retrieve the absolute path to the Python interpreter executable.
|
281
|
+
|
282
|
+
This method returns the full filesystem path to the Python interpreter
|
283
|
+
that is currently executing the script. This can be useful for debugging,
|
284
|
+
spawning subprocesses, or determining the runtime environment.
|
285
|
+
|
286
|
+
Returns
|
287
|
+
-------
|
288
|
+
str
|
289
|
+
The absolute path to the Python executable as a string.
|
290
|
+
"""
|
291
|
+
import sys # Import sys module to access interpreter information
|
292
|
+
return sys.executable # Return the path to the Python executable
|
293
|
+
|
294
|
+
def getPlatform(self) -> str:
|
295
|
+
"""
|
296
|
+
Retrieve the name of the current operating system platform.
|
297
|
+
|
298
|
+
This method determines the name of the operating system on which the Python
|
299
|
+
interpreter is currently running. It uses the standard library's `platform`
|
300
|
+
module to obtain a human-readable string representing the platform, such as
|
301
|
+
'Windows', 'Linux', or 'Darwin' (for macOS).
|
302
|
+
|
303
|
+
Returns
|
304
|
+
-------
|
305
|
+
str
|
306
|
+
A string representing the name of the operating system platform. Typical
|
307
|
+
return values include 'Windows', 'Linux', or 'Darwin'.
|
308
|
+
|
309
|
+
Notes
|
310
|
+
-----
|
311
|
+
The returned value is determined by the underlying system and may vary
|
312
|
+
depending on the environment in which the code is executed.
|
313
|
+
"""
|
314
|
+
import platform # Import the platform module to access system information
|
315
|
+
return platform.system() # Return the platform name as a string
|
@@ -7,9 +7,9 @@ orionis/app.py
|
|
7
7
|
orionis.egg-info/PKG-INFO
|
8
8
|
orionis.egg-info/SOURCES.txt
|
9
9
|
orionis.egg-info/dependency_links.txt
|
10
|
+
orionis.egg-info/not-zip-safe
|
10
11
|
orionis.egg-info/requires.txt
|
11
12
|
orionis.egg-info/top_level.txt
|
12
|
-
orionis.egg-info/zip-safe
|
13
13
|
orionis/console/__init__.py
|
14
14
|
orionis/console/kernel.py
|
15
15
|
orionis/console/args/__init__.py
|
@@ -1,85 +0,0 @@
|
|
1
|
-
from abc import ABC, abstractmethod
|
2
|
-
from typing import Any
|
3
|
-
|
4
|
-
class ICLIRequest(ABC):
|
5
|
-
|
6
|
-
@abstractmethod
|
7
|
-
def command(self) -> str:
|
8
|
-
"""
|
9
|
-
Retrieve the command name associated with this CLI request.
|
10
|
-
|
11
|
-
This method provides access to the command string that was specified during
|
12
|
-
the initialization of the CLIRequest object. The command represents the
|
13
|
-
primary action or operation that should be executed based on the CLI input.
|
14
|
-
|
15
|
-
Returns
|
16
|
-
-------
|
17
|
-
str
|
18
|
-
The command name stored as a string. This is the exact command value
|
19
|
-
that was passed to the constructor during object initialization.
|
20
|
-
|
21
|
-
Notes
|
22
|
-
-----
|
23
|
-
The returned command string is immutable and represents the core action
|
24
|
-
identifier for this CLI request. This value is essential for determining
|
25
|
-
which operation should be performed by the CLI handler.
|
26
|
-
"""
|
27
|
-
pass
|
28
|
-
|
29
|
-
@abstractmethod
|
30
|
-
def all(self) -> dict:
|
31
|
-
"""
|
32
|
-
Retrieve all command line arguments as a complete dictionary.
|
33
|
-
|
34
|
-
This method provides access to the entire collection of command line arguments
|
35
|
-
that were passed during the initialization of the CLIRequest object. It returns
|
36
|
-
a reference to the internal arguments dictionary, allowing for comprehensive
|
37
|
-
access to all parsed CLI parameters.
|
38
|
-
|
39
|
-
Returns
|
40
|
-
-------
|
41
|
-
dict
|
42
|
-
A dictionary containing all the parsed command line arguments as key-value
|
43
|
-
pairs, where keys are argument names (str) and values are the corresponding
|
44
|
-
argument values of any type. If no arguments were provided during
|
45
|
-
initialization, returns an empty dictionary.
|
46
|
-
|
47
|
-
Notes
|
48
|
-
-----
|
49
|
-
This method returns a reference to the internal arguments dictionary rather
|
50
|
-
than a copy. Modifications to the returned dictionary will affect the
|
51
|
-
internal state of the CLIRequest object.
|
52
|
-
"""
|
53
|
-
pass
|
54
|
-
|
55
|
-
@abstractmethod
|
56
|
-
def argument(self, name: str, default: Any = None):
|
57
|
-
"""
|
58
|
-
Retrieve the value of a specific command line argument by its name.
|
59
|
-
|
60
|
-
This method provides access to individual command line arguments that were
|
61
|
-
passed during initialization. It safely retrieves argument values without
|
62
|
-
raising exceptions if the argument doesn't exist.
|
63
|
-
|
64
|
-
Parameters
|
65
|
-
----------
|
66
|
-
name : str
|
67
|
-
The name of the command line argument to retrieve. This should match
|
68
|
-
the key used when the argument was originally parsed and stored.
|
69
|
-
default : Any, optional
|
70
|
-
The default value to return if the specified argument name does not
|
71
|
-
exist in the arguments dictionary. Defaults to None.
|
72
|
-
|
73
|
-
Returns
|
74
|
-
-------
|
75
|
-
Any or None
|
76
|
-
The value associated with the specified argument name if it exists
|
77
|
-
in the arguments dictionary. Returns None if the argument name is
|
78
|
-
not found or was not provided during CLI execution.
|
79
|
-
|
80
|
-
Notes
|
81
|
-
-----
|
82
|
-
This method uses the dictionary's get() method to safely access values,
|
83
|
-
ensuring that missing arguments return None rather than raising a KeyError.
|
84
|
-
"""
|
85
|
-
pass
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|