Skip to content

RajeshPatkarInstitute/Panim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Library that enables character based console animation

Installation

Requires Python and currently tested and supported on MacOSX and Linux

1. Donwload the latest release of Panim.py

2. Add the Panim.py in your Project folder

3. Now you can use Panim in your Project

Example Usage

from Panim import *

x = 5
y = 5

clrscr()
hidecursor()
foreground(RED)
background(BLUE)
for i in range(10):
    gotoxy(x+i,y)
    putchar('»')
    sleep(.5)
    gotoxy(x+i,y)
    putchar(' ')
    sleep(.5)
foreground(WHITE)
background(BLACK)
wait()
showcursor()

For Complete Reference - API

Made with ❤️ in 🇮🇳