Skip to content

Commit

Permalink
0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
yasserbdj96 committed Jun 4, 2021
1 parent a3f3417 commit 1c2bf06
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<h2>Installation:</h2>

```
pip install hiphp==0.1.6
pip install hiphp==0.1.7
```

<h2>Usage:</h2>
Expand Down Expand Up @@ -43,7 +43,7 @@ p1.upload("<THE_PATH_OF_THE_FILE_TO_BE_UPLOADED>","./<THE_PATH_YOU_WANT_TO_UPLOA
#s
from hiphp import hiphp

hiphp("123","https://localhost/index.php")
p1=hiphp("123","http://localhost/index.php")

# Example:1
# GET ID:
Expand Down Expand Up @@ -124,6 +124,9 @@ p1.upload("picture_example.png","./pictures/")
<h2>Changelog:</h2>

```
## 0.1.7
- fix bugs.
## 0.1.6
- fix bugs.
- add upload to upload any file.
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.1.7
- fix bugs.

## 0.1.6
- fix bugs.
- add upload to upload any file.
Expand Down
2 changes: 1 addition & 1 deletion examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#s
from hiphp import hiphp

hiphp("123","https://localhost/index.php")
p1=hiphp("123","http://localhost/index.php")

# Example:1
# GET ID:
Expand Down
7 changes: 4 additions & 3 deletions hiphp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#s
from hiphp import hiphp
hiphp("123","https://localhost/index.php")
p1=hiphp("123","http://localhost/index.php")
# Example:1
# GET ID:
Expand Down Expand Up @@ -100,7 +100,7 @@
"""
# VALUES :
#s
__version__="0.1.6"
__version__="0.1.7"
__name__="hiphp"
__author__="Yasser BDJ (Ro0t96)"
__author_email__="by.root96@gmail.com"
Expand All @@ -127,7 +127,8 @@
limitations under the License.'''
__copyright__='Copyright 2008 -> Present, '+__author__

__changelog__=("## 0.1.6\n - fix bugs.\n - add upload to upload any file.\n - Simplify the use of the program.\n\n")
__changelog__=("## 0.1.7\n - fix bugs.\n\n")
__changelog__=__changelog__+("## 0.1.6\n - fix bugs.\n - add upload to upload any file.\n - Simplify the use of the program.\n\n")
__changelog__=__changelog__+("## 0.1.5\n - fix bugs.\n\n")
__changelog__=__changelog__+("## 0.1.4\n - fix bugs.\n - new build. \n\n")
__changelog__=__changelog__+("## 0.1.1\n- Import pakages by pipincluder.\n- Fix bugs.\n\n")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup,find_packages
setup(
name="hiphp",
version="0.1.6",
version="0.1.7",
author="Yasser BDJ (Ro0t96)",
author_email="by.root96@gmail.com",
description='''A package for controlling a php-based website.''',
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.6
0.1.7

0 comments on commit 1c2bf06

Please sign in to comment.