Skip to content

ColabKit is a Python library designed to enhance the experience of working in Google Colab environments. With ColabKit, you can simplify common tasks, manipulate media, record audio, and create interactive widgets more efficiently.

License

Notifications You must be signed in to change notification settings

wipodev/ColabKit

Repository files navigation

ColabKit logo

ColabKit

Github release PyPI - Version PyPI - Downloads GitHub Downloads (all assets, all releases) License

ColabKit is a Python library designed to enhance the experience of working in Google Colab environments. With ColabKit, you can simplify common tasks, manipulate media, record audio, and create interactive widgets more efficiently.

Installation

You can easily install ColabKit using pip. Open a terminal and run:

pip install ColabKit

Test in google colab

You can see the tests carried out on the library in Google Colab through this link

Open In Colab

Key Features

  • Media Manipulation: Visualize and edit video and audio files directly in your notebook.
  • Audio Recording: Record real-time audio through your browser with a simple function.
  • Interactive Widgets: Create interactive buttons in the notebook to execute custom code.
  • System Utilities: Simplify common tasks, such as file deletion and file existence checks.

Usage Examples

Video Display

from ColabKit.media import showMedia

# Display a video file
showMedia('video.mp4', 'video')

Audio Recording

from ColabKit.record import record

# Record audio and save the result to a WAV file
record('recording.wav')

Creating Interactive Buttons

from ColabKit.widget import button

# Create an interactive button
def my_function():
    print("You clicked the button!")

button("Click Me", "Click to execute my_function", "success", my_function)

Documentation

For more information and detailed documentation, visit the ColabKit repository on GitHub.

Contributions

We appreciate contributions! If you wish to contribute or report issues, visit our GitHub repository.

License

This project is under the MIT License. See the LICENSE file for more details.


About

ColabKit is a Python library designed to enhance the experience of working in Google Colab environments. With ColabKit, you can simplify common tasks, manipulate media, record audio, and create interactive widgets more efficiently.

Resources

License

Stars

Watchers

Forks

Packages

No packages published