intro-to-python icon indicating copy to clipboard operation
intro-to-python copied to clipboard

An Introduction to Programming in Python

Results 50 intro-to-python issues
Sort by recently updated
recently updated
newest added

APIs List: + https://api.covidtracking.com/v1/us/daily.json Here are some notebooks that can be shared to help students connect with various APIs: + [Yelp](https://colab.research.google.com/drive/1eHQo8C6be0dG4aXAapjIuhnWVNhDvqYt?usp=sharing) + Spotify + Stripe + Twitter + Cats +...

There is a wrapper package but it's kind of buggy / not well documented. + https://github.com/davidteather/TikTok-Api It doesn't work in Colab / notebooks. + https://github.com/davidteather/TikTok-Api/issues/882 Some endpoints don't seem to...

We already have some mongodb notes for basic NoSQL, but let's also add notes about [firebase](https://firebase.google.com/). ## Setup https://firebase.google.com/docs/firestore/quickstart ## Usage Something like this: ```py import os from firebase_admin import...

Students are having various issues with getting a working Sendgrid API Key. Posting possible solutions here.

# Google Calendar API Using the `google-api-python-client` Package ## Reference Google Calendar API Docs: + https://developers.google.com/calendar/overview + https://developers.google.com/calendar/v3/reference/calendars ## Installation ```sh pip install google-api-python-client pip install oauth2client==4.1.3 ``` > NOTE:...

Add pygame package notes: + https://pypi.org/project/pygame/ + https://www.pygame.org/ + https://www.pygame.org/docs Tutorial: + https://realpython.com/pygame-a-primer/ Example past projects: + https://github.com/clay3899/Freestyle/blob/master/game/main.py

We need better examples for plotly express. Move some examples in from the chart gallery exercise solutions notebook.

After installing Anaconda for the first time on Mac OS Catalina, students might be running into "conda: command not found" related issues. As a one-time step, locate where the "anaconda3"...

I got a good recommendation about [GitHub Classroom](https://classroom.github.com/) today. We should explore using it for future semesters, maybe starting in the spring.

The current exercises (Testing 123, CI 123, Codebase Cleanup, Developer Collaboration), are a bit disjointed. It's possible that a single iterative exercise would be better. We want to provide practice...