mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-23 20:11:07 +00:00
commit
127344cb84
10
Clean_up_photo_directory/README.md
Normal file
10
Clean_up_photo_directory/README.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
# Clean_up_photo
|
||||
|
||||
|
||||
## Description
|
||||
|
||||
This program is used to find out the "bad" picture files and then eventually delete them.
|
||||
|
||||
## Usage
|
||||
|
||||
Run the clean_up_photo.py
|
20
Clean_up_photo_directory/clean_up_photo.py
Normal file
20
Clean_up_photo_directory/clean_up_photo.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
import os
|
||||
from os.path import join
|
||||
for (dirname, dirs, files) in os.walk('.'):
|
||||
for filename in files:
|
||||
if filename.endswith('.txt') :
|
||||
thefile = os.path.join(dirname,filename)
|
||||
size = os.path.getsize(thefile)
|
||||
if size == 2578 or size == 2565:
|
||||
print 'T-Mobile:',thefile
|
||||
#os.remove(thefile) Add this when you are sure to delete the file
|
||||
continue
|
||||
fhand = open(thefile,'r')
|
||||
lines = list()
|
||||
for line in fhand:
|
||||
lines.append(line)
|
||||
fhand.close()
|
||||
if len(lines) == 3 and lines[2].startswith('Sent from my iPhone'):
|
||||
print 'iPhone:', thefile
|
||||
#os.remove(thefile) Add this when you are sure to delete the file
|
||||
continue
|
|
@ -1,4 +1,4 @@
|
|||
# Awesome Python Scripts :sunglasses: <img alt="PyPI" src="https://warehouse-camo.cmh1.psfhosted.org/18509a25dde64f893bd96f21682bd6211c3d4e80/68747470733a2f2f696d672e736869656c64732e696f2f707970692f707976657273696f6e732f64796e61636f6e662e737667">
|
||||
# Awesome Python Scripts :sunglasses: <img alt="PyPI" src="https://warehouse-camo.cmh1.psfhosted.org/18509a25dde64f893bd96f21682bd6211c3d4e80/68747470733a2f2f696d672e736869656c64732e696f2f707970692f707976657273696f6e732f64796e61636f6e662e737667">
|
||||
|
||||
## What is this repo?
|
||||
This repo is a compilation of some *awesome* Python scripts that automate some boring tasks or simply make our life easier...or both!
|
||||
|
@ -71,7 +71,7 @@ So far, the following projects have been integrated to this repo:
|
|||
|[IMDB TV Series Info Extractor](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/imdb_episode_ratings)|[Yash Raj Sarrof](https://github.com/yashYRS) |
|
||||
|[Yoda-speak Translator](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/speak_like_yoda)|[sonniki](https://github.com/sonniki) |
|
||||
|[Medium Article Downloader](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/medium_article_downloader)|[coolsonu39](https://github.com/coolsonu39)|
|
||||
|
||||
|[Clean_up_photo](https://github.com/hastagAB/Awesome-Python-Scripts/tree/master/Clean_up_photo)|[sritanmay001](https://github.com/sritanmy001)|
|
||||
## How to use :
|
||||
|
||||
- Clone/Download the directory and navigate to each folder. Or...
|
||||
|
|
Loading…
Reference in New Issue
Block a user