An open API service indexing awesome lists of open source software.

https://github.com/morikeli/logos

I used python's turtle library to create logos of various companies
https://github.com/morikeli/logos

animation instagram logo logos microsoft python python3 turtle-python youtube

Last synced: 3 months ago
JSON representation

I used python's turtle library to create logos of various companies

Awesome Lists containing this project

README

          

# Logos

This is a collection of Python scripts that use the Turtle library to draw logos of Instgram, Microsoft & YouTube.

## Developer instructions
1. Clone the repo using git - make sure you have installed git in your system
2. Create a virtual environment and activate it using these commands.
```(bash)

python -m venv .venv

```
Activate the virtual environment
1. Linux
```(bash)

source .venv/bin/activate

```
2. Windows
```(bash)

.venv\Scripts\activate.bat

```
3. Run the scripts one at a time for the logo you want to display.
To view Instagram's logo, run the script using the command:

```(bash)

python instagram.py

```

To view Microsoft's logo, run the script using the command:

```(bash)

python microsoft.py

```

To view YouTube's logo, run the script using the command:

```(bash)

python youtube.py

```