Skip to content

Instantly share code, notes, and snippets.

View gabrielhribeiro's full-sized avatar

Gabriel Ribeiro gabrielhribeiro

View GitHub Profile
@Ryanb58
Ryanb58 / ftps_list_dir.py
Last active February 16, 2023 11:03
Quick script to connect to a FTPS server via python.
# WOrks in python 2.7 not sure if it works in python 3.
# Just straight up connect by any means possible.
from ftplib import FTP_TLS
def connect():
ftp = FTP_TLS()
ftp.debugging = 2
ftp.connect('localhost', 2121)
ftp.login('developer', 'password')
@ngupta23
ngupta23 / pycaret_ts_3p0p0rc4.ipynb
Created October 8, 2022 19:42
pycaret_ts_3p0p0rc4.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.