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
- Host: GitHub
- URL: https://github.com/morikeli/logos
- Owner: morikeli
- Created: 2022-08-23T08:31:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-12T07:39:50.000Z (about 1 year ago)
- Last Synced: 2025-02-28T09:20:57.036Z (12 months ago)
- Topics: animation, instagram, logo, logos, microsoft, python, python3, turtle-python, youtube
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```