Projects STRLCPY hiphp Commits 71ea5d83
🤬
  • 0.2.25

    - Fix "--down" command on windows os.
     - Color correction in the command line interface on windows os.
     - Bug fixes & performance improvements.
  • Loading...
  • Boudjada Yasser committed with GitHub 2 years ago
    71ea5d83
    1 parent 14b8a900
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■
    README.md
    skipped 34 lines
    35 35  <h2>All languages used in this project:</h2>
    36 36  * Python3<br>
    37 37  * PHP<br>
    38  -* Shell (bash)<br>
     38 +* Shell (Bash)<br>
     39 +* Shell (Batch)<br>
    39 40  * JavaScript<br>
    40 41  * CSS<br>
    41 42  * HTML
    skipped 19 lines
    61 62  | Distribution | Version Check | Python Test Version | Supported | Everything works |
    62 63  | :--------------: | :-----------: | :-----------------------: | :-------: | :--------------: |
    63 64  | Ubuntu | Last version | 3.6 --> 3.10 | ✓ | ✓ |
    64  -| Windwos | Last version | 3.6 --> 3.10 | ✓ | |
     65 +| Windwos | Last version | 3.6 --> 3.10 | ✓ | |
    65 66  | MacOS | Last version | 3.6 --> 3.10 | ✓ | ✗ |
    66 67  | Android-termux | Last version | 3.6 --> 3.10 | ✓ | ✓ |
    67 68  | Nethunter | Last version | 3.6 --> 3.10 | ✓ | ✓ |
    skipped 74 lines
    142 143  >>> git clone https://github.com/yasserbdj96/hiphp.git
    143 144  >>> cd hiphp
    144 145  >>> pip install -r requirements.txt
     146 + 
     147 +# default run on any os:
    145 148  >>> python3 run.py <KEY> <URL>
     149 + 
     150 +# In case you encounter some errors on Windows os:
     151 +## In this case the python must be installed to path.
     152 +>>> run.bat <KEY> <URL>
    146 153  ```
    147 154   
    148 155  <h2>Run with tools:</h2>
    skipped 181 lines
    330 337  <h2>Changelog History:</h2>
    331 338   
    332 339  ```
    333  -## 0.2.24 [28-08-2022][Last Version]
     340 +## 0.2.25 [03-09-2022][Last Version]
     341 + - Fix "--down" command on windows os.
     342 + - Color correction in the command line interface on windows os.
     343 + - Bug fixes & performance improvements.
     344 + 
     345 +## 0.2.24 [28-08-2022]
    334 346   - Fix "hiphp --ftp"
    335 347   - Add "--cd" command for Change directory.
    336 348   - Update all commands from "--command" to "command" (You can use both).
    skipped 144 lines
  • ■ ■ ■ ■ ■ ■
    hiphp/__init__.py
    skipped 29 lines
    30 30  from biglibrary import *
    31 31  import base64
    32 32  
    33  -#import os
    34  -#if os.name != 'nt':
    35  -# import readline
     33 +import os
     34 +if os.name == 'nt':
     35 + os.system('color')
     36 + # import readline
    36 37  
    37 38  #start hiphp class:
    38 39  class hiphp:
    skipped 372 lines
  • ■ ■ ■ ■ ■ ■
    run.bat
     1 +rem . .
     2 +rem --+----------------------------------------------------------+--
     3 +rem . Code by : yasserbdj96 .
     4 +rem . Email : [email protected] .
     5 +rem . Github : https://github.com/yasserbdj96 .
     6 +rem . BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 .
     7 +rem --+----------------------------------------------------------+--
     8 +rem . all posts #yasserbdj96 ,all views my own. .
     9 +rem --+----------------------------------------------------------+--
     10 +rem . .
     11 + 
     12 +rem START{
     13 +@echo off
     14 +Setlocal EnableDelayedExpansion
     15 + 
     16 +rem make symbels true:
     17 +for /F "tokens=2 delims=:" %%C in ('chcp') do set /A "$CP=%%C"
     18 +chcp 437 > nul
     19 + 
     20 +python run.py %1 %2
     21 + 
     22 +rem }END.
Please wait...
Page is in error, reload to recover