Skip to content

Latest commit

 

History

History
71 lines (50 loc) · 1.22 KB

File metadata and controls

71 lines (50 loc) · 1.22 KB

AI and Python

python -m pip install mitoinstaller
python -m mitoinstaller install
  • SweetViz - Plot per column etc

pip install sweetviz

import sweetviz as sv
import pandas as pd
# read dataset
df = pd.read_csv('StudentsPerformance.csv')
# generate report
my_report = sv.analyze(df)
my_report.show_html()
  • Faker - Fake Data

pip install faker

from faker import Faker
fake = Faker()
>>> fake.name()
Corey Edwards
>>> fake.job()
Nurse, mental health
>>> fake.company()
Patel-Porter
>>> fake.ssn()
656-80-3536
>>> fake.email()
stacey69@example.org
>>> fake.address()
057 Bailey Club Suite 230 Jamieshire, WA 93828
  • OpenDataSets - Downloading kaggle

pip install opendatasets

  • Emoji

pip install emoji

import emoji
>>> emoji.demojize("Happy birthday! ️️❤️🎁")
Happy birthday! :red_heart::wrapped_gift:

Paddle Paddle

PySnooper

CustomTkInter github

Encryption