Skip to content

Auro Utils is a utility toolkit, providing enhanced logging, performance profiling, etc.

License

Notifications You must be signed in to change notification settings

Auromix/auro_utils

Repository files navigation

Official   Ubuntu   LICENSE   GitHub Repo stars   Twitter Follow  

🛠️ Auro Utils

Auro Utils is a utility toolkit, providing enhanced logging, performance profiling, etc.

⚙️ Installation

To install Auro Utils, you can use one of the following methods:

# Install from PyPI
pip install auro_utils
# Install from the current directory (local development)
git clone https://github.com/Auromix/auro_utils
cd auro_utils
pip install -e .

🔥 Quickstart

You can find detailed examples for the project in the examples directory of the repository.

logger

Logger is a class that can be used to log messages to the console and to a file. It is a wrapper around loguru.

from auro_utils import Logger
my_logger = Logger()
my_logger.log_info("This is a info log test.")

logger_cmd

profiler

Decorator for profiling and analyzing performance of functions. It is a wrapper around yappi.

# Import the profiler
from auro_utils.profiler import auro_profiler


# Use the profiler as a decorator
@auro_profiler
# Your code here
def your_function_code():
    # Simulate your time-consuming operations
    import time

    time.sleep(2)

profiler_cmd

profiler_web

manager

Functions in manager can be used to read and write files and process paths.

# Load the configuration from the specified TOML file
loaded_config = au.load_config(
    config_file_path, relative_to=home_dir, file_type="toml"
)

# Print the loaded configuration data
print("Loaded configuration:", loaded_config)

🧪 Test

cd auro_utils
python3 -m pytest -v .

🧑‍💻 Documentation

For comprehensive documentation, please refer to the comments within the source code and examples.

🙋 Troubleshooting

If you encounter any issues or have questions regarding this package, please contact the maintainers:

📜 License

Copyright 2023-2024 Herman Ye@Auromix

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at:

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific
language governing permissions and limitations under the License.

🏆 Contributing

Contributions are welcome! Please follow the guidelines provided in the repository for contributing.

About

Auro Utils is a utility toolkit, providing enhanced logging, performance profiling, etc.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages