Skip to content

Instantly share code, notes, and snippets.

View jonathanfelicity's full-sized avatar
🎯
Focusing

Jonathan Felicity jonathanfelicity

🎯
Focusing
View GitHub Profile
name: Deploy to cPanel via FTP
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
@jonathanfelicity
jonathanfelicity / clean.py
Last active May 7, 2022 18:47
Arranging and Cleaning files with python
import os
import shutil
class Clean:
def __init__(self, fileExtention, fileFolder):
self.fileExtention = fileExtention;
self.fileFolder = fileFolder;
@attribute
def arrange(self):