Skip to content

Instantly share code, notes, and snippets.

View ignacio-chiazzo's full-sized avatar
👋
wave

Ignacio Chiazzo Cardarello ignacio-chiazzo

👋
wave
View GitHub Profile
@swalkinshaw
swalkinshaw / tutorial.md
Last active November 13, 2023 08:40
Designing a GraphQL API
  • Bump the version in setup.py

Release a new version on GitHub

  • $ git tag x.y.z -m "..."
  • To see the versions $ git tag
  • $ git push --tags origin master

Update version on PyPi

@devStepsize
devStepsize / slack_slash_cmd.py
Created April 21, 2016 23:12
Server-side logic to handle a Slack slash command using Python and Flask
'''
This is an example of the server-side logic to handle slash commands in
Python with Flask.
Detailed documentation of Slack slash commands:
https://api.slack.com/slash-commands
Slash commands style guide:
https://medium.com/slack-developer-blog/slash-commands-style-guide-4e91272aa43a#.6zmti394c
'''