-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from caffeine-addictt/dev
v0.1.3
- Loading branch information
Showing
18 changed files
with
284 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,19 +3,16 @@ | |
|
||
|
||
<!-- PROJECT SHIELDS --> | ||
<!-- | ||
*** I'm using markdown "reference style" links for readability. | ||
*** Reference links are enclosed in brackets [ ] instead of parentheses ( ). | ||
*** See the bottom of this document for the declaration of the reference variables | ||
*** for contributors-url, forks-url, etc. This is an optional, concise syntax you may use. | ||
*** https://www.markdownguide.org/basic-syntax/#reference-style-links | ||
--> | ||
[![Contributors][contributors-shield]][contributors-url] | ||
[![Forks][forks-shield]][forks-url] | ||
[![Stargazers][stars-shield]][stars-url] | ||
[![Issues][issues-shield]][issues-url] | ||
[![BSD-3-Clause License][license-shield]][license-url] | ||
[![LinkedIn][linkedin-shield]][linkedin-url] | ||
<div align="center"> | ||
|
||
<a href="[contributors-url]">[![Contributors][contributors-shield]][contributors-url]</a> | ||
<a href="[forks-url]">[![Forks][forks-shield]][forks-url]</a> | ||
<a href="[stars-url]">[![Stargazers][stars-shield]][stars-url]</a> | ||
<a href="[issues-url]">[![Issues][issues-shield]][issues-url]</a> | ||
<a href="[license-url]">[![BSD-3-Clause License][license-shield]][license-url]</a> | ||
<a href="[linkedin-url]">[![LinkedIn][linkedin-shield]][linkedin-url]</a> | ||
|
||
</div> | ||
|
||
<!-- PROJECT LOGO --> | ||
<br /> | ||
|
@@ -94,11 +91,11 @@ Our docs are [here!](/docs/getting-started.md) | |
<!-- ROADMAP --> | ||
## Roadmap | ||
|
||
- [x] Bug fixes | ||
- [x] Set Thread class to inherit from threading.Thread | ||
- [x] Add kill method | ||
- [x] Docs Update | ||
- [ ] v0.1.2 Release | ||
- [x] v0.1.3 Release | ||
- [ ] Bug fixes | ||
- [ ] New features | ||
- [ ] Testing | ||
- [ ] Next release... | ||
|
||
See the [open issues](https://github.com/caffeine-addictt/thread/issues) for a full list of proposed features (and known issues). | ||
|
||
|
@@ -138,6 +135,8 @@ Distributed under the BSD-3-Clause License. See `LICENSE.txt` for more informati | |
|
||
Alex - [email protected] | ||
|
||
Project Board: https://github.com/users/caffeine-addictt/projects/5 | ||
|
||
Project Link: [https://github.com/caffeine-addictt/thread](https://github.com/caffeine-addictt/thread) | ||
|
||
<p align="right">(<a href="#readme-top">back to top</a>)</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Thread Configuration Documentation | ||
|
||
I will lay out the configuration options! | ||
|
||
<br /> | ||
<details> | ||
<summary>Jump to</summary> | ||
<ul> | ||
<li><a href='#importing-the-class'> Import the class </a></li> | ||
<li><a href='#graceful-exiting'> Graceful Exit </a></li> | ||
</ul> | ||
</details> | ||
|
||
|
||
Don't have the thread library? [See here](./getting-started.md) for installing thread | ||
|
||
--- | ||
|
||
## Importing the class | ||
|
||
```py | ||
from thread import Thread | ||
``` | ||
|
||
<br /> | ||
|
||
|
||
## Graceful Exiting | ||
|
||
```py | ||
from thread import Settings | ||
|
||
# Enable/Disable graceful exiting | ||
Settings.set_graceful_exit(True) | ||
Settings.set_graceful_exit(False) | ||
``` | ||
|
||
<br /> | ||
|
||
|
||
Now you know the configuration options available! | ||
|
||
[See here](./parallel-processing.md) for how to using the `thread.ParallelProcessing` class! |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "thread" | ||
version = "0.1.2" | ||
version = "0.1.3" | ||
description = "Threading module extension" | ||
authors = ["Alex <[email protected]>"] | ||
license = "BSD-3-Clause" | ||
|
@@ -12,7 +12,7 @@ repository = "https://github.com/caffeine-addictt/thread" | |
documentation = "https://github.com/caffeine-addictt/thread/blob/main/docs/getting-started.md" | ||
keywords = ["threading", "extension", "multiprocessing"] | ||
classifiers = [ | ||
"Development Status :: 1 - Planning", | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License" | ||
] | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,6 @@ | |
|
||
from . import ( | ||
exceptions | ||
) | ||
) | ||
|
||
from .utils import Settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.