vizzuhq /
ipyvizzu
Build animated charts in Jupyter Notebook and similar environments with a simple Python syntax.
Loading repository data…
arora-amit37 / repository
A simple Python script that exports your Amazon orders to a CSV file using pandas, with automatic checks for empty datasets.
This Python snippet saves your orders data to a CSV file using pandas. If orders contains data, it will be exported to amazon_orders.csv. Otherwise, it will notify you that no data is available.
Install dependencies:
pip install pandas
import pandas as pd
if orders:
df = pd.DataFrame(orders)
df.to_csv("amazon_orders.csv", index=False)
print(f"✅ Orders saved to amazon_orders.csv ({len(df)} rows).")
else:
print("No data to save.")
orders variable contains any data.amazon_orders.csv without the index column.Example Output:
✅ Orders saved to amazon_orders.csv (125 rows).
No data to save.
Selected from shared topics, language and repository description—not editorial ratings.
vizzuhq /
Build animated charts in Jupyter Notebook and similar environments with a simple Python syntax.
parrt /
A simple Python data-structure visualization tool for lists of lists, lists, dictionaries; primarily for use in Jupyter notebooks / presentations
dnanhkhoa /
A simple extension for Jupyter Notebook and Jupyter Lab to beautify Python code automatically using black.
Making Machine Learning Simple and Scalable with Python, Jupyter Notebook, TensorFlow, Keras, Apache Kafka and KSQL
n8henrie /
A simple extension for Jupyter Notebook and Jupyter Lab to beautify Python code automatically using Black. Fork of dnanhkhoa/nb_black.
Komal01 /
Phishing website detection system provides strong security mechanism to detect and prevent phishing domains from reaching user. This project presents a simple and portable approach to detect spoofed webpages and solve security vulnerabilities using Machine Learning. It can be easily operated by anyone since all the major tasks are happening in the backend. The user is required to provide URL as input to the GUI and click on submit button. The output is shown as “YES” for phishing URL and “NO” for not phished URL. PYTHON DEPENDENCIES: • NumPy, Pandas, Scikit-learn: For Data cleaning, Data analysis and Data modelling. • Pickle: For exporting the model to local machine • Tkinter, Pyqt, QtDesigner: For building up the Graphical User Interface (GUI) of the software. To avoid the pain of installing independent packages and libraries of python, install Anaconda from www.anaconda.com. It is a Python data science platform which has all the ML libraries, Data analysis libraries, Jupyter Notebooks, Spyder etc. built in it which makes it easy to use and efficient. Steps to be followed for running the code of the software: • Install anaconda in the system. • gui.py : It contains the code for the GUI and is linked to other modules of the software. • Feature_extractor.py: It contains the code of Data analysis and data modelling. • Rf_model.py: It contains the trained machine learning model. • Only gui.py is to be run to execute the whole software.