Skip to content

Commit be3e22e

Browse files
committed
rename module
1 parent 95b8e8a commit be3e22e

File tree

8 files changed

+96
-6
lines changed

8 files changed

+96
-6
lines changed

.github/FUNDING.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: bhupesh
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: "\U0001F41B 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: "\U0001F680 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.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: "\U0001F49F Say thank you"
3+
about: Just say thanks if you liked tutorialdb
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
if you liked **tutorialdb** - please let us know. We'd love to hear from you!
11+
12+
You can help me in any way possible
13+
14+
- [ ] Give the repository a star ⭐️
15+
- [ ] Help out with issues
16+
- [ ] Share tutorialdb with others
17+
- [ ] Make tutorials, This Powers tutorialdb 💪🏽
18+
- [ ] Support me on [Patreon](https://www.patreon.com/bePatron?u=18082750)
19+
20+
Thank you! 💐

CodeRunner/__init__.py

Whitespace-only changes.
File renamed without changes.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# cc-judge
2-
> The future judge for CodeClassroom.(_WIP_)
1+
# CodeRunner
2+
> The future code runner for CodeClassroom (_WIP_)
33
44

55
### Installation
@@ -9,7 +9,7 @@ virtualenv -p python3 venv && cd venv && source bin/activate
99
```
1010
2. Clone the repository.
1111
```bash
12-
git clone https://github.com/codeclassroom/cc-judge.git
12+
git https://github.com/codeclassroom/CodeRunner.git
1313
```
1414
3. Install Dependencies.
1515
```bash
@@ -22,10 +22,10 @@ python3 tests.py
2222

2323
### Usage
2424

25-
Import the `run` method from *judge.py*.
25+
Import the `run` method from *CodeRunner* module.
2626

2727
```python
28-
from judge import run
28+
from CodeRunner.run import run
2929

3030
program_name = "test_python.py"
3131
language = "Python"

tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import unittest
2-
from judge import run
2+
from CodeRunner.run import run
33

44
#test for Java program
55
class TestRunA(unittest.TestCase):

0 commit comments

Comments
 (0)