An example of a package developed with pyenv, built with build using setuptools, uploaded to PyPI using twine, and distributed via pip.
Project description
Team 13 - Hackertype
A little exercise to create a Python package, build it, test it, distribute it, and use it. See instructions for details.
Team Members
Kedan Zha
Bruce Wu
Evan Huang
Amaan Khwaja
Project Description
Hackertype lets you pretend you are the elite hacker you always you knew you were in your heart of hearts, right from the CLI.
CLI Tools
Hackertype
python -m team13hackertype hackertype <language:[python|java]>
Run the classic hackertype app from the old internet days. Press keys to generate programming snippets from the given language and press esc to finish. Currently supported languages are python and java.
Penetrate
python -m team13hackertype penetrate <language> <text:optional>
Simulate a penetration hack. The program will display your text in a scary looking font before launching into hackertype of your given language. The supported language and usage is the same as hackertype. When done, the program will tell you that you are logging out.
Help
python -m team13hackertype -h
View a description of the functions and the parameters provided by the package.
Happy hacking!
Usage in a Python project
While hackertype is meant to be, for the most part, a fun, whimsical command line app, there are a few functionalities that may be imported into your project.
hackertype.looping_string
looping_string(string: str, chunk_size: int) -> Iterator[str]
Creates an iterator that loops over a string forever. Each iteration returns the next chunk of the string of length 'chunk_size'.
- Parameters
string: str- The string that is being looped.
chunk_size: int- The size of the substring that is returned.
- Returns
Iterator[str]- An iterator of substrings of
stringwhere each substring has sizechunk_size. This iterator has no stop.
- An iterator of substrings of
hackertype.get_code_snippet
get_code_snippet(language: str) -> str
Given a coding language, returns a large code snippet written in that language as a string. Currently, supported values for lanuage are 'python' and 'java'. The code snippet for Python was borrowed from TensorFlow and the snippet for Java was borrowed from Spring.
- Parameters
language: 'python' | 'java'- The language of the code snippet.
- Returns
str- The code snippet written in the
languageprogramming language.
- The code snippet written in the
- Raises
NotImplementedError- Raised if we do not have a snippet for the language provided. Right now, we support python and java.
IOError- Raised if there was another IO problem with opening the file.
Exception- Raised for any other miscellaneous exceptions occuring when opening the file.
hackertype.hackertype
hackertype(language: str, speed: int = 20) -> None
Starts listening for keyboard presses. On key press, prints out speed amount of characters from a code snippet written in the language coding language, until the Esc key is pressed. Note that this function is not asynchronous. This means that after running, it will wait for the Esc key before continuing program execution.
- Parameters
language: 'python' | 'java'- The coding language of the hacker snippet to be printed.Supported values include
'python'and'java'.
- The coding language of the hacker snippet to be printed.Supported values include
speed: int, optional, default: 20- The number of characters to print out on a single key press.
- Returns
None
- Raises
- Same as
hackertype.get_code_snippet.
- Same as
penetrate.penetrate
penetrate(language: str, text: str = "DARKWEB", loading_bar_speed: float = 1.0, emphasis_style: str = "bold red", notification_style: str = "bold green") -> None
Simulates a penetration hacking attempt in the standard output. Logs out text in ASCII text before launching into hackertype. Upon escaping, displays a logging out message. Note that this function utilizes hackertype.hackertype and is also not asynchronous.
- Parameters
language: str- The coding language of the hacker type to be printed.Supported values include
'python'and'java'. Seehackertype.hackertype.
- The coding language of the hacker type to be printed.Supported values include
text: str, optional, default: "DARKWEB"- The text shown in the banner. Length of string must be less than 8.
loading_bar_speed: float, optional- The speed of loading bar progress.
emphasis_style: str, optional, default: "bold red"- The style for Console print of emphasized text. For options, see Rich docs.
notification_style: str, optional, default: "bold green"- The style for Console print of emphasized text, used in
show_header. For options, see Rich docs.
- The style for Console print of emphasized text, used in
- Returns
None
- Raises
NotImplementedError- Raised if we do not have a snippet for the language provided. Right now, we support python and java. See
hackertype.hackertype.
- Raised if we do not have a snippet for the language provided. Right now, we support python and java. See
ValueError- Raised if the given style is not provided.
Exception- Unexpected exception that may arise from IO or console issues.
Example Usage
View an example usage of the functions here.
Contributing Runbook
- Clone the project. (
git clone https://github.com/software-students-fall2022/python-package-exercise-project-3-team-13.git) - Change directories into the project. (
cd python-package-exercise-project-3-team-13) - Set up and activate your virtual environment. (
python -m venv venv && source venv/bin/activate) - Install the requirements. (
python -m pip install -r requirements.txt) - The package is now available to you in
src/team13hackertype. - Run the tests. (
python -m pytest ./tests) - To build, run
python -m build.
Project details
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 team13hackertype-1.0.4.tar.gz.
File metadata
- Download URL: team13hackertype-1.0.4.tar.gz
- Upload date:
- Size: 57.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbf9ebdd24ce716eec92f83fc93285380c111870592c05d9d4f5bd2dd41bfcfe
|
|
| MD5 |
67e041ab86826d0eac0679292a7eecec
|
|
| BLAKE2b-256 |
4e5666c348ebc904158d7dc0125a43ef32418b638a3c1c0ac25c2e3e953ed44f
|
File details
Details for the file team13hackertype-1.0.4-py3-none-any.whl.
File metadata
- Download URL: team13hackertype-1.0.4-py3-none-any.whl
- Upload date:
- Size: 43.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71444e6bd0636755477dc4ed0c46d99beb653364a8ea44aaa864043cbc87118c
|
|
| MD5 |
5fabde82d293b5a08ee58f1c0c0b82a5
|
|
| BLAKE2b-256 |
587bfbe549506b1cff34d15b5013f74285e02904e18677bc5cbf652b26564966
|