Navigation Menu

Skip to content
View mattccrampton's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro

Organizations

@apicanary
Block or Report

Block or report mattccrampton

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. matt_crampton_unix_env matt_crampton_unix_env Public

    Vim Script

  2. post_to_twitter_using_python post_to_twitter_using_python Public

    A companion code repo for Matt Crampton's blog post "Four Simple Steps To Post To Twitter Using Python"

    Python 9 4

  3. Tweet from python using tweepy Tweet from python using tweepy
    1
    import tweepy
    2
    
                  
    3
    def get_api(cfg):
    4
        auth = tweepy.OAuthHandler(cfg['consumer_key'], cfg['consumer_secret'])
    5
        auth.set_access_token(cfg['access_token'], cfg['access_token_secret'])