Skip to content

Commit 273bb22

Browse files
Resolved merge conflicts and merged master
2 parents 962540e + 83026bb commit 273bb22

File tree

10 files changed

+608
-0
lines changed

10 files changed

+608
-0
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.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/workflows/close_pr.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Close Pull Request
2+
3+
on:
4+
pull_request_target:
5+
types: [opened]
6+
7+
jobs:
8+
run:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: superbrothers/close-pull-request@v3
12+
with:
13+
# Optional. Post a issue comment just before closing a pull request.
14+
comment: "Congratulations! You have completed the lab. Closing for maintainence purpose."

.gitignore

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
*.py,cover
51+
.hypothesis/
52+
.pytest_cache/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
target/
76+
77+
# Jupyter Notebook
78+
.ipynb_checkpoints
79+
80+
# IPython
81+
profile_default/
82+
ipython_config.py
83+
84+
# pyenv
85+
.python-version
86+
87+
# pipenv
88+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
90+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
91+
# install all needed dependencies.
92+
#Pipfile.lock
93+
94+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
95+
__pypackages__/
96+
97+
# Celery stuff
98+
celerybeat-schedule
99+
celerybeat.pid
100+
101+
# SageMath parsed files
102+
*.sage.py
103+
104+
# Environments
105+
.env
106+
.venv
107+
env/
108+
venv/
109+
ENV/
110+
env.bak/
111+
venv.bak/
112+
113+
# Spyder project settings
114+
.spyderproject
115+
.spyproject
116+
117+
# Rope project settings
118+
.ropeproject
119+
120+
# mkdocs documentation
121+
/site
122+
123+
# mypy
124+
.mypy_cache/
125+
.dmypy.json
126+
dmypy.json
127+
128+
# Pyre type checker
129+
.pyre/

CODE_OF_CONDUCT.md

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Contributor Covenant Code of Conduct
22

33
## Our Pledge
4+
<<<<<<< HEAD
45
We as contributors and maintainers pledge to make participation in our project a harassment-free experience for everyone.
56

67
## Our Standards
@@ -11,3 +12,130 @@ We as contributors and maintainers pledge to make participation in our project a
1112

1213
## Enforcement
1314
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the repository maintainers.
15+
=======
16+
17+
We as members, contributors, and leaders pledge to make participation in our
18+
community a harassment-free experience for everyone, regardless of age, body
19+
size, visible or invisible disability, ethnicity, sex characteristics, gender
20+
identity and expression, level of experience, education, socio-economic status,
21+
nationality, personal appearance, race, religion, or sexual identity
22+
and orientation.
23+
24+
We pledge to act and interact in ways that contribute to an open, welcoming,
25+
diverse, inclusive, and healthy community.
26+
27+
## Our Standards
28+
29+
Examples of behavior that contributes to a positive environment for our
30+
community include:
31+
32+
* Demonstrating empathy and kindness toward other people
33+
* Being respectful of differing opinions, viewpoints, and experiences
34+
* Giving and gracefully accepting constructive feedback
35+
* Accepting responsibility and apologizing to those affected by our mistakes,
36+
and learning from the experience
37+
* Focusing on what is best not just for us as individuals, but for the
38+
overall community
39+
40+
Examples of unacceptable behavior include:
41+
42+
* The use of sexualized language or imagery, and sexual attention or
43+
advances of any kind
44+
* Trolling, insulting or derogatory comments, and personal or political attacks
45+
* Public or private harassment
46+
* Publishing others' private information, such as a physical or email
47+
address, without their explicit permission
48+
* Other conduct which could reasonably be considered inappropriate in a
49+
professional setting
50+
51+
## Enforcement Responsibilities
52+
53+
Community leaders are responsible for clarifying and enforcing our standards of
54+
acceptable behavior and will take appropriate and fair corrective action in
55+
response to any behavior that they deem inappropriate, threatening, offensive,
56+
or harmful.
57+
58+
Community leaders have the right and responsibility to remove, edit, or reject
59+
comments, commits, code, wiki edits, issues, and other contributions that are
60+
not aligned to this Code of Conduct, and will communicate reasons for moderation
61+
decisions when appropriate.
62+
63+
## Scope
64+
65+
This Code of Conduct applies within all community spaces, and also applies when
66+
an individual is officially representing the community in public spaces.
67+
Examples of representing our community include using an official e-mail address,
68+
posting via an official social media account, or acting as an appointed
69+
representative at an online or offline event.
70+
71+
## Enforcement
72+
73+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
74+
reported to the community leaders responsible for enforcement at
75+
.
76+
All complaints will be reviewed and investigated promptly and fairly.
77+
78+
All community leaders are obligated to respect the privacy and security of the
79+
reporter of any incident.
80+
81+
## Enforcement Guidelines
82+
83+
Community leaders will follow these Community Impact Guidelines in determining
84+
the consequences for any action they deem in violation of this Code of Conduct:
85+
86+
### 1. Correction
87+
88+
**Community Impact**: Use of inappropriate language or other behavior deemed
89+
unprofessional or unwelcome in the community.
90+
91+
**Consequence**: A private, written warning from community leaders, providing
92+
clarity around the nature of the violation and an explanation of why the
93+
behavior was inappropriate. A public apology may be requested.
94+
95+
### 2. Warning
96+
97+
**Community Impact**: A violation through a single incident or series
98+
of actions.
99+
100+
**Consequence**: A warning with consequences for continued behavior. No
101+
interaction with the people involved, including unsolicited interaction with
102+
those enforcing the Code of Conduct, for a specified period of time. This
103+
includes avoiding interactions in community spaces as well as external channels
104+
like social media. Violating these terms may lead to a temporary or
105+
permanent ban.
106+
107+
### 3. Temporary Ban
108+
109+
**Community Impact**: A serious violation of community standards, including
110+
sustained inappropriate behavior.
111+
112+
**Consequence**: A temporary ban from any sort of interaction or public
113+
communication with the community for a specified period of time. No public or
114+
private interaction with the people involved, including unsolicited interaction
115+
with those enforcing the Code of Conduct, is allowed during this period.
116+
Violating these terms may lead to a permanent ban.
117+
118+
### 4. Permanent Ban
119+
120+
**Community Impact**: Demonstrating a pattern of violation of community
121+
standards, including sustained inappropriate behavior, harassment of an
122+
individual, or aggression toward or disparagement of classes of individuals.
123+
124+
**Consequence**: A permanent ban from any sort of public interaction within
125+
the community.
126+
127+
## Attribution
128+
129+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
130+
version 2.0, available at
131+
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
132+
133+
Community Impact Guidelines were inspired by [Mozilla's code of conduct
134+
enforcement ladder](https://github.com/mozilla/diversity).
135+
136+
[homepage]: https://www.contributor-covenant.org
137+
138+
For answers to common questions about this code of conduct, see the FAQ at
139+
https://www.contributor-covenant.org/faq. Translations are available at
140+
https://www.contributor-covenant.org/translations.
141+
>>>>>>> 83026bb2b9688feea1dea289ca22efd7209440dd

CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<<<<<<< HEAD
12
# Contributing Guidelines
23

34
Thank you for your interest in contributing to this project!
@@ -14,3 +15,6 @@ Thank you for your interest in contributing to this project!
1415

1516
## Reporting Issues
1617
If you find a bug or have a feature request, please open an issue in the repository.
18+
=======
19+
All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome.
20+
>>>>>>> 83026bb2b9688feea1dea289ca22efd7209440dd

0 commit comments

Comments
 (0)