https://github.com/jetstrike-ai/jetcore
Core for programming on python
https://github.com/jetstrike-ai/jetcore
Last synced: 10 months ago
JSON representation
Core for programming on python
- Host: GitHub
- URL: https://github.com/jetstrike-ai/jetcore
- Owner: Jetstrike-AI
- Created: 2022-03-10T16:36:36.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-18T16:03:37.000Z (almost 4 years ago)
- Last Synced: 2025-01-21T11:12:30.869Z (12 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ⚙️JetCore
Programming core with utilities and features
Whats this?
=
JetCore - Lightweight kernel for python programming.
This core easy to use and takes up almost no space.
📌Features
=
-📝Fast threading:
import JetCore
JetCore.thread(target, count)
#target - Assing executable function/class
#count - Count of threands be used
-📡Easy site available check:
import JetCore
JetCore.check_site(site)
#site - URL of checking site
-🛰️Easy ping check:
import JetCore
JetCore.check_ping(ip)
#ip - IP or URL of site/machine
-🖥️Easy External IP check:
import JetCore
JetCore.get_ip()
#get_ip - Getting external IP of your machine
-⚙️Encoding str to bytes:
import JetCore
JetCore.str_byte(text)
#text - str nedeed to encode
-⚙️Converting bytes to str:
import JetCore
JetCore.byte_str(text)
#text - bytes nedeed to decode
-🔬Find out the name of OS:
import JetCore
JetCore.platform()
#JetCore.platform - returning name of OS
-🔭Find out info of processor:
import JetCore
JetCore.processor()
#JetCore.processor - returning name of processor in machine
-👓Find out architecture:
import JetCore
JetCore.arch()
#JetCore.arch - returning architecture of processor
-🔭Find out installed python version:
import JetCore
JetCore.py_ver()
#JetCore.py_ver - returning version of installed python
-🔬Find out info of your machine:
import JetCore
JetCore.machine_info()
#JetCore.machine_info - returning info of machine: arch, system name, processor, version of installed python
-⚙️Check external IP:
import JetCore
JetCore.check_ip(ip) #ip - IP adress nedeed to check
#JetCore.check_ip() - Finding info for external IP
-⚙️Check available server:
import jetCore
JetCore.check_server(ip,port) #ip - IP your server; port - port of your server
#JetCore.check_server - Trying connect to server.
🛠️How to install?
=
1) git clone https://github.com/Jetstrike-AI/JetCore
2) Copy to Libs of your python
3) Done!