Skip to content

Commit 87d6345

Browse files
authored
Merge branch 'main' into master
2 parents 6896746 + 63e9eae commit 87d6345

File tree

4 files changed

+84
-7
lines changed

4 files changed

+84
-7
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Contribution Guidelines
22

3-
Thank you for considering contributing to our Python Customtkiner snippets repository! I welcome any contributions that enhance the collection and make it more valuable for the community.
3+
Thank you for considering contributing to our Python CustomTkinter snippets repository! I welcome any contributions that enhance the collection and make it more valuable for the community.
44

55
## How to Contribute
66

77
1. Fork the repository to your GitHub account.
88
2. Clone the forked repository to your local machine:
99
```
10-
git clone https://github.com/AshhadDevLab/Customtkiner-Snippets.git
10+
git clone https://github.com/AshhadDevLab/CustomTkinter-Snippets.git
1111
```
1212
3. Create a new branch for your changes:
1313
```
@@ -23,10 +23,10 @@ Thank you for considering contributing to our Python Customtkiner snippets repos
2323
## Contribution Guidelines
2424

2525
- Ensure your code adheres to Python's [PEP 8 style guide](https://www.python.org/dev/peps/pep-0008/).
26-
- Each snippet should be self-contained and focused on a specific aspect of Customtkiner.
26+
- Each snippet should be self-contained and focused on a specific aspect of CustomTkinter.
2727
- Provide clear comments explaining the purpose and usage of the snippet.
2828
- If applicable, include a brief example or demonstration of the snippet's functionality.
2929
- Update the README.md file to reflect any new additions or changes.
3030
- Test your snippets thoroughly to ensure they work as expected.
3131

32-
I appreciate your contributions and look forward to making this repository a valuable resource for the Python Customtkiner community!
32+
I appreciate your contributions and look forward to making this repository a valuable resource for the Python CustomTkinter community!

README.md

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,39 @@
1-
# Customtkinter-Snippets
2-
A curated collection of Python customkinter snippets for building interactive GUI applications effortlessly.
1+
# Python CustomTkinter Snippets
2+
3+
Welcome to the Python CustomTkinter Snippets repository! This repository contains a curated collection of Python CustomTkinter code snippets to help you build interactive graphical user interfaces (GUIs) effortlessly.
4+
5+
## About CustomTkinter
6+
7+
CustomTkinter is a custom version of the standard Tkinter GUI library for Python developed by [Tom Schimansky](https://github.com/TomSchimansky). You can find the CustomTkinter repository [here](https://github.com/TomSchimansky/CustomTkinter). It provides a fast and easy way to create GUI applications. With CustomTkinter, you can create windows, labels, buttons, menus, and much more to build powerful desktop applications.
8+
9+
## Repository Structure
10+
11+
The repository is organized into folders based on different aspects of CustomTkinter functionality. Each folder contains code snippets focusing on a specific feature or task. Here's a brief overview of the repository structure:
12+
13+
- `layout`: Snippets related to arranging widgets within a CustomTkinter window.
14+
- `events`: Snippets demonstrating event handling in CustomTkinter.
15+
- `widgets`: Snippets showcasing various CustomTkinter widgets such as buttons, labels, entry fields, etc.
16+
- `dialogs`: Snippets for creating dialog boxes and pop-up windows.
17+
- `styling`: Snippets illustrating how to customize the appearance of CustomTkinter widgets using styles and themes.
18+
- `examples`: Complete examples demonstrating the integration of multiple CustomTkinter components to create functional GUI applications.
19+
20+
## How to Use
21+
22+
Each snippet is self-contained and focused on a specific aspect of CustomTkinter. Simply browse through the folders to find the snippet that meets your requirements. Each snippet includes comments explaining its purpose and usage. You can copy and paste the code into your own Python scripts or projects.
23+
24+
## Contribution
25+
26+
Contributions to this repository are highly encouraged! If you have any useful CustomTkinter snippets that you would like to share with the community, please follow the [contribution guidelines](CONTRIBUTING.md) to contribute your snippets. Together, we can make this repository a valuable resource for CustomTkinter developers.
27+
28+
## Code of Conduct
29+
30+
Please note that by contributing to this repository, you agree to abide by our [Code of Conduct](CODE_OF_CONDUCT.md). We expect all contributors to uphold the principles of respect and inclusivity.
31+
32+
## License
33+
34+
This repository is licensed under the [BSD 3-Clause License](LICENSE). Feel free to use the code snippets in your own projects.
35+
36+
## Get Started
37+
38+
Explore the folders and start building amazing GUI applications with Python CustomTkinter!
39+

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
22
"name": "customtkinter-snippets",
33
"displayName": "CustomTkinter Snippets",
4+
45
"description": "A curated collection of Python customtkinter snippets for building interactive GUI applications effortlessly.",
56
"version": "2.0.0",
7+
68
"engines": {
79
"vscode": "^1.81.0"
810
},
@@ -17,7 +19,7 @@
1719
"url": "https://github.com/AshhadDevLab"
1820
},
1921
"repository": {
20-
"url": "https://github.com/AshhadDevLab/Customtkinter-Snippets",
22+
"url": "https://github.com/AshhadDevLab/CustomTkinter-Snippets",
2123
"type": "git"
2224
},
2325
"contributes": {

0 commit comments

Comments
 (0)