0% found this document useful (0 votes)
68 views

Python Basics: Advanced Programming in Python 1 Magzhan Ikram

This document provides instructions for an assignment to write a Python code to pull cryptocurrency data from Coingecko's API. The code should filter the top N cryptocurrencies by market capitalization. It also outlines the required project repository structure, including a README file, and recommends following Python style guidelines per PEP 8.

Uploaded by

Aiya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
68 views

Python Basics: Advanced Programming in Python 1 Magzhan Ikram

This document provides instructions for an assignment to write a Python code to pull cryptocurrency data from Coingecko's API. The code should filter the top N cryptocurrencies by market capitalization. It also outlines the required project repository structure, including a README file, and recommends following Python style guidelines per PEP 8.

Uploaded by

Aiya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 4

Python Basics

Advanced Programming in Python 1


Magzhan Ikram
Assignment 1
 Write a Python code which 
- Pulls the data from coingecko.com
    - https://www.coingecko.com/api/documentations/v3 - swagger
    - https://www.coingecko.com/en/api/documentation - API documentation
            -   https://github.com/man-c/pycoingecko - coingecko python library
- filters out top N cryptocurrencies by market capitalization 
Project Repository structure
README.md
Assignment will not be accepted
    - Title
if Repository and README are
-  Installation
not written and structured
-  Usage
properly!!!
-  Examples

LICENSE
requirements.txt
src/
test/
Python Style Guidelines
PEP 8 -- Style Guide for Python Code
 - https://www.python.org/dev/peps/pep-0008/

You might also like