Metadata-Version: 2.1
Name: tkscrollframe
Version: 0.1.0
Summary: tkinter frame width auto vertical scrollbar
Home-page: https://github.com/youssefhoummad/tkscrollframe
Author: youssef Hoummad
Author-email: youssefhoummad@outlook.com
Project-URL: Bug Tracker, https://github.com/youssefhoummad/tkscrollframe/issues
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

# tkscrollframe
tkinter frame widget with auto scroll.

## How to install
`pip install tkscrollframe`


## How to use
```
import tkinter as tk
from tkscrollframe import ScrollFrame

root = tk.Tk()
sf = ScrollFrame(root)

frame = sf.viewPort # is important

# add some widget to frame sf
for i in range(20):
    tk.Label(frame, text=f"text in line {i}").pack() 

sf.pack()
root.mainloop()
```

## options
if you need scrollbar placed to right `sf= ScrollFrame(root, justify='right')`
