Metadata-Version: 2.2
Name: timetrix
Version: 0.0.9
Summary: Lightweight and intuitive Python library designed to help developers,track, measure, and visualize time with ease.
Home-page: https://github.com/maglovskiNenad/timetrix
Author: Maglovski Nenad
Author-email: maglovskin@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: datetime
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Timetrix

## What is timetrix?

Timetrix is a lightweight and intuitive Python library designed to help developers track, measure, and visualize time
with ease. Whether you're profiling your code, creating time-based visualizations, or tracking the duration of events,
timetrix provides the tools you need with minimal setup.

## Installation
```commandline
    pip install timetrix
```

# Contributing
 
We welcome contributions! If you'd like to add new features, fix bugs, or improve documentation, please:

1. Fork the repository.
2. Create a new branch for your feature or bug fix.
3. Submit a pull request with a detailed description of your changes.


# Acknowledgments

Thank you to the open-source community for inspiration and support!

# TimeMashine

The TimeMachine class provides methods that help in displaying time or time periods in a static format when needed.

- day(): This method, when called, returns the current day of the month as an integer.

- month(): This method, when called, returns the current month as an integer.

- year(): This method, when called, returns the current year as an integer.

- month_name(): This method, when called, returns the current name of month as string.

- hour(): This method, when called, returns the current hour as an integer.

- minutes(): This method, when called, returns the current minutes as an integer.

- seconds(): This method, when called, returns the current seconds as an integer.

- clock(): This method retrieves the current time from the stored date and formats it 
as a string representing the time in hours, minutes, and seconds (HH:MM:SS). The formatted time is then 
printed on the same line, updating the displayed time without moving to a new line.
