Skip to content

ascendantaditya/Pycamp

Repository files navigation

PyCamp Workshop

Welcome to PyCamp, a workshop where we explore Python, Data Science libraries, and various coding exercises. This repository contains code and resources from the workshop.

Table of Contents

Introduction

PyCamp is a hands-on workshop designed to introduce participants to Python and essential Data Science libraries. Throughout this workshop, we cover topics such as Python basics, data manipulation with Pandas, data visualization with Matplotlib and Seaborn, web development with Flask and Django, and machine learning with TensorFlow.

Installation

To get started, it's recommended to set up a virtual environment and install the necessary dependencies. Follow the steps below:

  1. Clone this repository:

    git clone https://github.com/ascendantaditya/Pycamp.git
    cd Pycamp
  2. Create a virtual environment:

    python -m venv .venv
  3. Activate the virtual environment:

    • On Windows:

      .\venv\Scripts\activate
    • On Unix or MacOS:

      source venv/bin/activate
  4. Install dependencies using pip:

    pip install -r requirements.txt

Workshop Content

This repository includes code and examples for the following topics:

  • Python Basics
  • Data Manipulation with Pandas
  • Data Visualization with Matplotlib and Seaborn
  • Web Development with Flask and Django
  • Machine Learning with TensorFlow

Feel free to explore the directories to access the specific content related to each topic.

How to Use the Code

Each topic has its dedicated folder containing code examples and exercises. Follow the instructions provided in each directory to understand and run the code. You can also use the code as a reference for your projects or further exploration.

Dependencies

The workshop code relies on the following Python libraries:

Make sure to install these dependencies in your virtual environment as described in the Installation section.

Contributing

If you find any issues, have suggestions, or want to contribute to this workshop, feel free to open an issue or submit a pull request.

License

This workshop material is licensed under the MIT License. Feel free to use, share, and modify as needed.