Skip to content

Commit 2a5aacf

Browse files
authored
Merge pull request #1 from larymak/master
Master
2 parents 0b7838a + 9f7ba9e commit 2a5aacf

File tree

13 files changed

+184
-0
lines changed

13 files changed

+184
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,13 @@
22
## This is a list of python scripts for begonner projects
33

44
### What is Covered
5+
6+
* [Ascii Image Converter](https://github.com/larymak/Python-project-Scripts/tree/master/image-ascii)
7+
8+
* [Pyjokes](https://github.com/larymak/Python-project-Scripts/tree/master/pyjokes)
9+
10+
* [WhatsApp Spambot](https://github.com/larymak/Python-project-Scripts/tree/master/whatsapp-spam)
11+
12+
* [Photo Editor App](https://github.com/larymak/Python-project-Scripts/tree/master/photo%20editor)
13+
14+
_more coming soon_

image-ascii/flo.text

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
*SS#&#&##&###SSSS######&&&&&&&&&&&&&###SS####&#####S#################SSSSS&%%$#$
2+
S*S######&&&&&####SSSS####&&&&&&&&&####S###########SS#################SS##$%@&$%
3+
**S#######&&&&&&&&#####SSSS####&&&&&######SSSSSSSSS##########SSSS#####S##@%@&%%%
4+
*S##&#&&###&&&&&&&&&&####&#SSSSS######SSSSS*SSS**SSSSSS#########SSSSSS#S&%&&%%%%
5+
*#&&&&######&&&&&&&&&&&##&#S######S##SSSSS******SSSSSS**S###########SSS#%&&%%%%%
6+
S###&&&########&&&&&&&&###S#########SSSSS**S*SS#SSS#SSSSSSSSSS#########$@#%%%%%%
7+
####SSSS###########&&&&#&SS########SSSSSSSSSSSSSSSSSS#SSSSSSSSS#######&@#%%%%%%%
8+
#&&######SSSSS###########S########SSSSSSSSSSSS****SSSSSSSSSSSSS#######@#$%%%%%%%
9+
##########S###SSSSS###&&SS&######SS*SS******************S***SSS######@&@%%%%%%%%
10+
#########S###########S#SS##&######S**SS*****SS*****************SS###&&&%%%%%%%%%
11+
%$@&&#SSS*#################S######S&@&@&#SSSSSSSSSSSS***SS******S###$#$%%%%%%%%%
12+
%%%%%%$@&############&&##&&####SSS&@@@%$#SS#&#####SSSSSSSSS*****S##@&&%%%%%%%$&#
13+
%%%%%%%***%%$@&&########&&&&##&SS&$%%$@&&SSS#&&##SSSSSSSSSS****S##&$#$%%%%%@#SSS
14+
%%%%%%%%%%%****%%$@&&##########S&$%%%$@@&#*SSS#SS*SSSSSSSSSSS#####%@&%%$@#SS**SS
15+
%%%%%%%%%%%%%%%%%%%*%%%$@&&###SS#&&&@@SS#S*S#&S*S**SSSSSSSS&&####$%&@@#SSS***SSS
16+
%%%%%***%%%%%%%%%%%%$@@@@@@@&#&##&&&@$SSS**SS#SSSS**SS***S######&$&SS***********
17+
%%%%%*****%%%%%%%%$&&##S#####S@$$&&&@$@##**SSS#SSSSS***SSSS##SSSS***************
18+
**%%%%%%%%%%%%%%$&&&&##SS#####SS&&&@&&$@#***SSSSSSSSSSSS##SS********************
19+
******%%%%%%%%%@#######SS#SS##S*S@$@&#@&S********SSSSSSSS*********************#@
20+
******%%***%%%&##SSS####S#SSSSSS@$@&###S*******S*SSSS**********************S&$%%
21+
*****%%%**%%*@##**SSSS##S#SSSS#@@&#S#S***SS******S**********************S&$%*%%%
22+
*****%%**%%*%#S*S#SSS***S#SS&@$@&&##S*********S**********************S&$%*%%%%%%
23+
%%%*%%**%%%*%#*######SS*SSSS&$*$&##S******************************SS$%%%%%%%%%%%
24+
**%%%%%%%%**$S#########S*S#SS*#**@#*******************S********#@%*#%**%%%%%%%%%
25+
*****%%%%%%%&S########SSS#SSSS*@@@#SSS***************SSS****S@%%***&@********%%%
26+
***********%####&##SSSS##SSSS*****SSSSSS****S********SSS**&%**%****%#**********%
27+
***********%#####SS#####SSSS*****SSSSSS****SS*******SSS*S$***%******&@********%*
28+
**********%%###SS#####S#SSSSS******SSSS***SSS******SSSS&%*%%%%******%#%*********
29+
%********%%%#SSSS#####SSSS*S********SSSSSSSSSS***SSSSS#%********%%%**@#%********
30+
%%%%%%***%*%SSS###S#SSSSSS*********SSSSSSSSSSSSSSSSSSSS%***********%%*@&%***%***
31+
%*******%%*&SS###SSSSSSS***********SSSSSSSSSSSSSSSSSSSS%***********%***@&%*%****
32+
%*********$SSSSSSSSSSS**************SSSSSSSSSSSSSSSSSSS%**********%*****@#%*****
33+
%*********@*SSSSSSSS*********************SSSSSSSSSSSS*&***********%******%&@****
34+
**********$SSSSSSS*************************SSSSSSSSSS*@*%%*%%****%*********@&$**
35+
**********%SSSSSS********************************SSSS*%*%*******%%%*********%&&$
36+
*****%*****$SSSS**********************************SSSS%****************%******%@
37+
%%**%%*%%%%*@S*************************************SSS%****************%*******%
38+
&&@$$$%*****%S*************************************S**$***********************%$
39+
&&&&&&&@@$$%&SSS**************************************@***********************$$
40+
@&&&&&&&&&&#SS****************************************#*****%****************$$$
41+
&&&&&&&&@@@&&##SS**********************************S**S%****%***************%@$$
42+
&&&#SSSS##@$$$@@&&###SS*************************SS#@$%*****%***************%$$$$
43+
&&&&##SS*&@@@@@@&&&&&##SSSS************SSSSS$$$%**%************************$$$$$

image-ascii/image.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import pywhatkit
2+
pywhatkit.image_to_ascii_art(
3+
'flo.jpg', 'flo.text')

image-ascii/mak.jpg

92.3 KB
Loading

image-ascii/mak.text

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
2+
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
3+
::::::::::::::::::::::::::::::::::::::::::::::::::::...:::::::::::::::::::::::::
4+
::::::::::::::::::::::::::::::::::::::::::::!*%$$$@@$%*!:..:::::::::::::::::::::
5+
:::::::::::::::::::::::::::::::::::::::!!**%%%%%$$$$@&##&$*:.:::::::::::::::::::
6+
::::::::::::::::::::::::::::::::::::**%%%%%%%%%%$$$%%%$$&##&$!:.::::::::::::::::
7+
:::::::::::::::::::::::::::::::::!*%%%%%%%%%$$$$$$$$$$$$$$@&##@*::::::::::::::::
8+
:::::::::::::::::::::::::::::::!*%%%%%%%%$$$$$$$$$@@@@@$$$$$$@&#@!::::::::::::::
9+
:::::::::::::::::::::::::::::!%%%%%%%%%%%$$$$$$$@@@@@@@@@@$$$$$@##$:.:::::::::::
10+
:::::::::::::::::::::::::::%&#&&@$%%%%%%%$$$$$$@@@@@@@@@@@@@$$$$$@#@!.::::::::::
11+
::::::::::::::::::::::::::%@@&&&&@$$$$$$$$$$@@@@@@@@@@@@@@@@@@$$$$@##*::::::::::
12+
:::::::::::::::::::::::::*@@&&#&&@@@@@@@&&&&&&&@@@@@@@&&&&@@@@@@@@@&##%:::::::::
13+
:::::::::::::::::::::::::@SSSSS##&&&&&#####SSSSS##&&&@@&&&&&&@@@@@@&##S$::::::::
14+
::::::::::::::::::::::::!#S#@@###&@@&###SSSSSSSSSSSS##&&&&&&&&&@@&&###SS$:::::::
15+
::::::::::::::::::::::::!&&@**$&&@@@&&##SSSSSSSSS#######&&&&&&&&&&&###SS#*::::::
16+
:::::::::::::::::::::::!%$@@@@@@$$$@@&##SSS*****SS########&&&&&&&&&####SS&::::::
17+
:::::::::::::::::::::!*%$$$$$$$%%$$@@&&##S****&$&SSS###################SS#!:::::
18+
::::::::::::::::::::!%$$$$$%%%%%$$$@@@&###SSS#$*!*&SSS#################SS#!:::::
19+
:::::::::::::::::::!%$@$$%%%%%%%$@@@@$@&&&###S#&@@@#S*SS##############SSS&::::::
20+
:::::::::::::::::!!!$$$$$$$$@@@$$@@@@@@@@@&&&&###&&&##SS###########SSSSSS$::::::
21+
::::::::::::::::!!!*$$$&SS######&@@@&&&&@@@&##&&&@@&&&###########SSSSSSS#!::::::
22+
:::::::::::::::!!!!*$$$$#SSSS****S#&&###&&@&&&#&&&@@&&&&########SSSSSSSS$:::::::
23+
::::::::::::::!!!!!*%$$$@&##SSSS***S#####&&&&&###&&&&&&&#########SSSSSS&::::::::
24+
:::::::::::::!!!!!!%$$$$@&&&######SS######&&&#####################SS##&!::::::::
25+
::::::::::::!!!!!!*$@@@&&&##&&####&&&&&&#############################S%:::::::::
26+
::::::::::!!!!!!!!$##SSSSSSS######&&&&&&#######SSSSSS###########S####*&:::::::::
27+
::::::::!!!!!!!!!*@@@@&#SS**SSS#####&&&#######SSSSSSSSSSSS#####SSS#&#S&:::::::::
28+
:::::::!!!!!!!!!!*$@@@@@@&&#SS**SS##########SSSSSSSSSSSSSSS###SSS**##S$:::::::::
29+
::::::!!!!!!!!!!!*$&##########SS**SSS###SSSSSSSSSSSSSSSSSSSSS###SSSSS$::::::::::
30+
:::::!!!!!!!!!!!**$#SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS####SS#&*:::::::::::
31+
:::!!!!!!!!!!*$&#S#&#SSS**********SSSSSSSSSSSSSSSSSSSSSS##SS&&&@@$*:::::::::::::
32+
::!!!!!!!!!$&S****S###SSSS***********SSSSSSSSSSSSSSSSSSS##&*!!!!::::::::::::::::
33+
:!!!!!!!!%&S****SS*SSSSSSSSSSSS*******************SSSSSS#@!:!:::::::::::::::::::
34+
***%%%$$@SSS***SS***S*******SSSSS********************SSSS@!!!:::::::::::::::::::
35+
%%%*%$@#SSSS*SS*S**##*******************************SSSS**@:!:::::::::::::::::::
36+
*****%&SSSSSS*SS***#**SS**************************SSSS*****%:!::::::::::::::::::
37+
***%@#S*SSS**S*S**S@S*SSS**************************SS******#!:::::::::::::::::::
38+
**$#*****SS**S****S@#************************************SS*&:::::::::::::::::::
39+
**$**S***S*S******S@@***********************************S****@::::::::::::::::::
40+
***$S*****S***S**SS@$**************************************S**@!:::!**%**!::::::
41+
****$&#SSSSSS*S*S&#&*#***************************S&**********SS%!*%$$$$@$%*!!:::
42+
*****%$@&SSSS*S*#@&#*@*************************S$@*******S#&@@&$$%$$@@$$$$@#S#*:
43+
*****%$$@&SSS*S*S#&S@@#S*********************S&$&S*****S&@$@@@$%%%$@@$$@#S**S*S*
44+
******%$@&#SS***S*SS#$&&*******************SS@%#*S***S#&@@@&&$%%$@@@$@#********S
45+
***%**%$@&&#SS**S*SSSS*#&****************S#S*SS*****S&$$$$@$%%%@&@@$@S**********
46+
***%*%%%$@&&#SSS**S****#%#*************S#SS*****SSS*#&@$%%%%%%@&&@@$S***********
47+
&@$%%%%%%$@&&#SSSS****S###************SSS******###SS&@$$$%%%%&#&@@$@************
48+
SSSS&$%%%%$$@&#SSS****SSSS**********S@&&S#S***#&&SS#@$$%%%%%###&@$$@************
49+
SSS**S$%%%%$$@&##SSS***#S***********###*SS***S&&#SS@$$%%%%%&#&@@$$$@S***********
50+
S***S*S@%%%%%$@&&##SS**SSS********S#SS**S****&&&#S&$$%%%%%@S&&@&&&&&S***********
51+
S*S***SS&%%%%$$@@&&##****#S******S#SSSS#S*S*#@&#S#$$$%%%%$#S#SS*****************

image-ascii/pywhatkit_dbs.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--------------------

photo editor/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* This is a simple program to edit photos
2+
* It uses the Pillow package
3+
* Simply what it does it combines to images abd gives a good edited photo

photo editor/images.jpg

43.4 KB
Loading

photo editor/lary.png

1.2 MB
Loading

photo editor/photo.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from PIL import Image
2+
me = Image.open('lary.png')
3+
back = Image.open('images.jpg')
4+
back.paste(me, (0,0), me)
5+
back.show()
6+
7+
8+
9+
10+
11+
12+
13+
14+
15+
16+
17+
18+
19+
20+
21+
#me = Image.open('lary.png')
22+
#bg = Image.open('images.jpg')
23+
#bg.paste(me,(0,0),me)
24+
#bg.show()

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy