Metadata-Version: 2.1
Name: tkTimePicker
Version: 0.1.0
Summary: This package provides you with easy to customize timepickers
Home-page: https://github.com/PaulleDemon/tkTimePicker
Author: Paul
License: MIT
Description: # tkTimePicker
        
        This is a simple and fully customizable timepicker widgets made for tkinter. You can make use of
        three types of timepicker:
        
        1. clock timepicker
        2. old-spin timepicker
        3. modern-spin timepicker
        
        quick example
        
        ```python
        import tkinter as tk
        from tktimepicker import timepicker
        
        root = tk.Tk()
        
        time_picker = timepicker.AnalogPicker(root)
        time_picker.pack()
        
        root.mainloop()
        ```
        
        for more examples refer [Examples](examples),
        for documentation read [Documentation](Documentation.md)
        
        **Clock time picker**
        
        Available themes:
        
        <a id="themes"></a>
        **NavyBlue**
        
        ![NavyBlue](https://github.com/PaulleDemon/tkTimePicker/blob/master/ReadMeImages/NavyBlue.png)
        
        **Dracula**
        
        ![Dracula](https://github.com/PaulleDemon/tkTimePicker/blob/master/ReadMeImages/DraculaDark.png)
        
        **purple**
        
        ![Purple](https://github.com/PaulleDemon/tkTimePicker/blob/master/ReadMeImages/Purple.png)
        
        **Old-spin timepicker**
        
        ![old-spin timepicker](https://github.com/PaulleDemon/tkTimePicker/blob/master/ReadMeImages/SpinTimeold.png)
        
        **Modern-spin timepicker**
        
        ![old-spin timepicker](https://github.com/PaulleDemon/tkTimePicker/blob/master/ReadMeImages/SpinTimeModern.png)
        
Keywords: tkinter,timepicker,time,tktimepicker
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6
Description-Content-Type: text/markdown
