gistyc — A Python based GitHub GIST management toolkit

By Medium - 2021-03-18

Description

Medium has become a great source for articles of any kind. This includes also programming tutorials covering data science or machine learning topics. But covering actual coding parts requires one…

Summary

  • GitHub GISTs are a perfect way to display code snippets on Medium.
  • Click on your personal account profile (top right) Click Settings On the left menu bar go to Developer settings and choose Personal access tokens Generate new token and write a name (note) of your token.
  • Updating a GIST with the gistyc Python API (Using only the FILEPATH of a Python file) However, let’s assume you have several GISTs with the same name (by the way: The pipeline further checks if the changes have been performed on the main branch.

 

Topics

  1. Coding (0.21)
  2. Backend (0.11)
  3. Frontend (0.08)

Similar Articles

Pointers in Python: What's the Point

By realpython - 2021-03-09

In this step-by-step tutorial, you'll get a clearer understanding of Python's object model and learn why pointers don't really exist in Python. You'll also cover ways to simulate pointers in Python wi ...

PyPy: Faster Python With Minimal Effort

By realpython - 2020-12-28

In this tutorial, you'll learn how you can use PyPy to improve the speed of your applications. You'll see how PyPy compares with other Python implementations like CPython and learn about features that ...

Python enumerate(): Simplify Looping With Counters

By realpython - 2020-12-15

Once you learn about for loops in Python, you know that using an index to access items in a sequence isn't very Pythonic. So what do you do when you need that index value? In this tutorial, you'll lea ...

How To Deploy ML Models on AWS With Elastic Beanstalk

By Medium - 2021-02-05

In previous articles, we provided examples of how to build a Flask Rest API, how to build and deploy a machine learning web app, and how to deploy a Flask API with Digital Ocean. Today, we will…