tool for cheating exam
Project description
codebank
A Python Package for Easy Access to Predefined Code Snippets for Exams
This package provides easy access to predefined Python code snippets that can be directly used in exams or coding assessments. By calling simple functions, users can retrieve code examples on various topics, copy the output from the console, and paste it into their compiler or editor for execution.
Features
- Predefined code snippets for common Python problems.
- Easy-to-use function calls.
- Useful for exam preparation and quick reference.
Installation
To install the package, use pip:
pip install codebank
Usage
After installation, you can import the package and start retrieving predefined code snippets by calling simple functions.
Example 1: Retrieve a Function to Find Prime Numbers
import codebank
# Call the required function to retrieve the code
code_snippet = codebank.one()
# The code will be printed in the console, and you can copy it
print(code_snippet)
Output:
import numpy as np
import pandas as pd
df=pd.read_csv('Iris1.csv')
df.head()
from sklearn import tree
from sklearn.model_selection import train_test_split
X=df[['SepalLengthCm','SepalWidthCm','PetalLengthCm','PetalWidthCm']]
Y=df['Species']
X_train,X_test,Y_train,Y_test=train_test_split(X,Y,test_size=0.2)
model=tree.DecisionTreeClassifier()
model.fit(X_train,Y_train)
print("score",model.score(X_test,Y_test))
tree.plot_tree(model)
Available Functions
-
one(): Decision Tree Classifier -
two(): Spam Detection using Support Vector Machine -
three(): Face Detection using Cascading -
four(): Face Recognisation using ANN -
five(): K Nearest Neighbour -
fivea(): Adult Salary Prediction using Random Forest -
six(): Multi Layer Perceptron for Character Recognisation -
seven(): Sentiment Analysis using Random Forest -
eight(): Bayesian Network for Heart Disease -
nine(): Fraud Detection using ANN -
More functions can be added to cover additional topics such as searching, recursion, data structures, etc.
How to Use
- Copy the Code: After calling a function, copy the printed code snippet from the console.
- Paste and Run: Paste it into your Python editor or compiler.
- Modify (Optional): If required, you can modify the function parameters or extend the code as per your needs.
Contributing
Contributions are welcome! If you would like to add more code snippets or suggest improvements, feel free to fork the repository and submit a pull request.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Feedback
For issues, bugs, or feature requests, feel free to open an issue on the GitHub repository.
This README provides a simple and clear guide for users, focusing on ease of use and practical functionality for exam preparation. It walks through installation, usage examples, available functions, and contribution guidelines.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file codebank-0.1.8.tar.gz.
File metadata
- Download URL: codebank-0.1.8.tar.gz
- Upload date:
- Size: 19.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ca636ee9d7c98b241638e321257627edb169b3542849679fe701b07e51c01db
|
|
| MD5 |
4c30a3eb34eb4c6b96383f91f7b93b03
|
|
| BLAKE2b-256 |
d19e8a714b6a0acee9c43cc77b3225ce81468fccad24ebbf5b9ea4bb9d7e6da6
|
File details
Details for the file codebank-0.1.8-py3-none-any.whl.
File metadata
- Download URL: codebank-0.1.8-py3-none-any.whl
- Upload date:
- Size: 18.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4b47eeab24df56f4989183ea34c05eb43ab67e924050f8520d360925cc0f5e5
|
|
| MD5 |
5a31782e35bd6192d107b94394802b19
|
|
| BLAKE2b-256 |
bbb2da8aa5116717da352e20e4d2dd9ca068c992eb0b2d11cdcea05234ccd521
|