You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- PDF Documentation: [https://hreikin.github.io/tkintermd/pdf/tkintermd-documentation-LATEST.pdf](https://hreikin.github.io/tkintermd/pdf/tkintermd-documentation-LATEST.pdf)
2. Create and source a Python virtual environment:
67
+
143
68
```sh
144
69
python3 -m venv .venv
145
70
source .venv/bin/activate
146
71
```
72
+
147
73
3. Install requirements with `pip`:
74
+
148
75
```sh
149
76
pip install -r requirements.txt
150
77
```
151
78
152
-
<palign="right">(<ahref="#top">back to top</a>)</p>
153
-
154
79
<!-- USAGE EXAMPLES -->
155
-
###Usage
80
+
## Usage
156
81
157
-
####Embedded
82
+
### Embedded
158
83
159
84
To use the `TkintermdFrame` in one of your own python scripts:
160
85
161
86
```python
162
-
from tkintermd.tkintermd_frameimport TkintermdFrame
87
+
from tkintermd.frameimport TkintermdFrame
163
88
164
89
import tkinter as tk
165
90
from tkinter.constants import*
@@ -172,20 +97,12 @@ app.mainloop()
172
97
173
98
_For more examples, please refer to the [Documentation](https://hreikin.github.io/tkintermd)_
174
99
175
-
<palign="right">(<ahref="#top">back to top</a>)</p>
176
-
177
100
<!-- ROADMAP -->
178
101
## Roadmap
179
102
180
-
<!-- - [ ] Feature 1
181
-
- [ ] Feature 2
182
-
- [ ] Feature 3
183
-
- [ ] Nested Feature -->
184
-
185
-
Check out the [Github Project - tkintermd v0.1.0](https://github.com/users/hreikin/projects/1/) for an overview of the work being done towards the release.
186
-
See the [open issues](https://github.com/hreikin/tkintermd/issues) for a full list of proposed features (and known issues).
187
-
188
-
<palign="right">(<ahref="#top">back to top</a>)</p>
103
+
Check out the [Github Project - tkintermd v0.1.0](https://github.com/users/hreikin/projects/1/)
104
+
for an overview of the work being done towards the release. See the [open issues](https://github.com/hreikin/tkintermd/issues)
105
+
for a full list of proposed features (and known issues).
189
106
190
107
<!-- CONTRIBUTING -->
191
108
## Contributing
@@ -201,47 +118,21 @@ Don't forget to give the project a star! Thanks again!
201
118
4. Push to the Branch (`git push origin feature/AmazingFeature`)
202
119
5. Open a Pull Request
203
120
204
-
<palign="right">(<ahref="#top">back to top</a>)</p>
205
-
206
121
<!-- LICENSE -->
207
122
## License
208
123
209
124
Distributed under the MIT License. See `LICENSE.txt` for more information.
210
125
211
-
<palign="right">(<ahref="#top">back to top</a>)</p>
- PDF Documentation: [https://hreikin.github.io/tkintermd/pdf/tkintermd-documentation-LATEST.pdf](https://hreikin.github.io/tkintermd/pdf/tkintermd-documentation-LATEST.pdf)
Copy file name to clipboardExpand all lines: docs/contributing-to-tkintermd.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,16 @@ summary: Contribution guidelines for tkintermd.
4
4
authors:
5
5
- hreikin
6
6
---
7
-
Check out the [Github Project - tkintermd v0.1.0](https://github.com/users/hreikin/projects/1/) for an overview of the work being done towards the release.
8
-
See the [open issues](https://github.com/hreikin/tkintermd/issues) for a full list of proposed features (and known issues).
7
+
Check out the [Github Project - tkintermd v0.1.0](https://github.com/users/hreikin/projects/1/)
8
+
for an overview of the work being done towards the release. See the [open issues](https://github.com/hreikin/tkintermd/issues) for a full list of proposed features (and known issues).
9
9
10
-
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
10
+
Contributions are what make the open source community such an amazing place to
11
+
learn, inspire, and create. Any contributions you make are
12
+
**greatly appreciated**.
11
13
12
-
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
13
-
Don't forget to give the project a star! Thanks again!
14
+
If you have a suggestion that would make this better, please fork the repo and
15
+
create a pull request. You can also simply open an issue with the tag
16
+
"enhancement". Don't forget to give the project a star! Thanks again!
14
17
15
18
- Fork the Project
16
19
- Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
0 commit comments