Welcome To Snipplr
Everyone's Recent Snippets Tagged python
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Always gives me perfect date.
Sample Output
Current Day is: 1
Current Month is: 2
Current Year is: 2020
Current Hour is: 17
Current Minute is: 3
Current Second is: 8
Current Microsecond is: 556483
2
14589
posted 4 years ago by johnwalsh1
Just try the following Python Sample SMS Code scripts and you will find that sending SMS to your contact via this programming script is fun!
1
1504
posted 7 years ago by Broadnet
Calculates the lcm of 2 or more numbers (based on a self-made algorithm)
0
973
posted 7 years ago by amirteymuri
arr[::-1] does a list slice to reverse the array
str(x) for x in arr[::-1] casts the ints in the array as strings
map(str, arr[::-1]) does the same thing by using map to cast the ints
" ".join() joins the resulting strings with a space
1
1158
posted 8 years ago by denisemauldin
Display the google chrome bookmarks to html and then save to database.
1
1719
posted 9 years ago by Gauravwagh11
One day I got to wondering if it was possible to get a Python script to modify itself. After a few searches I found a solution that I present here. I did not write this code, but feel that it should be "paid forward" so others know that it is possibl...
1
1169
posted 9 years ago by BustACode
A simple Python censor script that takes 2 arguments. One is for the text you want to censor and the other is the list of words that should not be viewed.
0
945
posted 9 years ago by arielinfante
Overview
In an earlier post "OS.walk in Python", I described how to use os.walk and showed some examples on how to use it in scripts.
In this article, I will show how to use the os.walk() module function to walk a
directory tree, and the fnma...
1
1100
posted 9 years ago by tionazo
Get all links from a website
from: http://www.pythonforbeginners.com/code/regular-expression-re-findall
0
2159
posted 9 years ago by tionazo
Flatten a list of lists (or tuple of tuples, list of tuples, etc.) to any depth of nesting using no mutable objects.
1
1345
posted 9 years ago by alces
Usage:
1. save the snippet as *fabfile.py*
2. and run:
**$ fab -H myhost1,myhost2...**
or set *env.roledefs['myrole'] = ['myhost1', 'myhost2', ...]* in *fabfile.py* and run this way:
**$ fab -R myrole**
0
1112
posted 10 years ago by alces
his simple patch solves the problem when building on windows with usernames with non-ascii letters.
0
1068
posted 10 years ago by composite
for Cron:
# run
$ crontab -e
# then add this
*/1 * * * * export DISPLAY=:0.0 && /home/username/path/to/script.py > /dev/null
# then save.
# This cron job will run every minute
0
1051
posted 10 years ago by pantuts
Tiny python closure for combining redis keys with "format".
Uses a closure so it does not remake the base key each use.
0
886
posted 10 years ago by dsonbill
Gets system, machine, OS and networking information and either writes it to a file or returns the data as a string.
1
979
posted 10 years ago by JordanRowles
This REST example uses pycurl library to send HTTP request and handle HTTP response so you need to install it to use this example. Once input Word documents are uploaded, you can use the following URI to merge documents on Aspose for Cloud or any sup...
0
1256
posted 10 years ago by johansonkatherine
This file starts at the bottom of the tree and recursively moves all of the files from that tree into another folder. To avoid overwriting files I prepended all of the files with a 9digit number.
0
912
posted 10 years ago by jlmarks
'
'
' 1, Create your cex.io account from https://cex.io/r/0/rbillig/0/ ( mandatory )
' 2, Tranfer Bitcoins to you account
' 3, Under your CEX account, create a public and secret key
' 4, Modify the 3 vars below ( G_USERNAME, G_APIKEY...
0
1635
posted 10 years ago by rbillig
Photoshop python script
export multiple files with each layerSet
0
1183
posted 10 years ago by janusoo
Crea oraciones aleatoriamente a partir de lo que se ponga en las listas part1, part2 y part3
1
1035
posted 11 years ago by a7xrturo