All Projects → choldgraf → Threader

choldgraf / Threader

Licence: mit
Easy Twitter threads with Python

Projects that are alternatives of or similar to Threader

Casmls.github.io
Columbia Advanced Machine Learning Seminar
Stars: ✭ 24 (-4%)
Mutual labels:  jupyter-notebook
Kubeflow Data Science On Steroids
The blog post about Kubeflow, including all materials
Stars: ✭ 25 (+0%)
Mutual labels:  jupyter-notebook
Shapedetector keras coreml
Deep learning installed Shape Detector using Keras and CoreML 📱
Stars: ✭ 25 (+0%)
Mutual labels:  jupyter-notebook
Pythonfundamentos
Repositório do Curso Online Python Fundamentos Para Análise de Dados.
Stars: ✭ 924 (+3596%)
Mutual labels:  jupyter-notebook
Aprendaprog
Aprenda a Programar
Stars: ✭ 24 (-4%)
Mutual labels:  jupyter-notebook
Option Pricing Under Uncertainty
By means of stochastic volatility models
Stars: ✭ 25 (+0%)
Mutual labels:  jupyter-notebook
Samplecode
Pythonエンジニア ファーストブックのサンプルコード
Stars: ✭ 24 (-4%)
Mutual labels:  jupyter-notebook
Databases workshop
RCS Intro to Databases workshop materials
Stars: ✭ 25 (+0%)
Mutual labels:  jupyter-notebook
Jupyter Workings
A collection of Jupyter notebook workings
Stars: ✭ 25 (+0%)
Mutual labels:  jupyter-notebook
Datadoubleconfirm
Simple datasets and notebooks for data visualization, statistical analysis and modelling - with write-ups here: http://projectosyo.wix.com/datadoubleconfirm.
Stars: ✭ 24 (-4%)
Mutual labels:  jupyter-notebook
Lre
NIST Language i-vector Machine Learning Challenge
Stars: ✭ 24 (-4%)
Mutual labels:  jupyter-notebook
Spml4dm
Statistics and Machine Learning for Data Mining
Stars: ✭ 24 (-4%)
Mutual labels:  jupyter-notebook
Happiness Prediction
Sentimental analysis using keras in python
Stars: ✭ 25 (+0%)
Mutual labels:  jupyter-notebook
Abd
Course materials for Advanced Binary Deobfuscation by NTT Secure Platform Laboratories
Stars: ✭ 926 (+3604%)
Mutual labels:  jupyter-notebook
Openmined demo
This is the code for "How Do We Democratize Access to Data?" by Siraj Raval on Youtube
Stars: ✭ 25 (+0%)
Mutual labels:  jupyter-notebook
Pycon2016
PyCon code and presentation
Stars: ✭ 24 (-4%)
Mutual labels:  jupyter-notebook
Tf Keras Surgeon
Pruning and other network surgery for trained TF.Keras models.
Stars: ✭ 25 (+0%)
Mutual labels:  jupyter-notebook
Mlhep2017
MLHEP 2017 slides & seminars
Stars: ✭ 25 (+0%)
Mutual labels:  jupyter-notebook
Cryptocompare Api
Jupyter Notebook with examples of useful CryptoCompare API calls
Stars: ✭ 25 (+0%)
Mutual labels:  jupyter-notebook
Computational Linguistics Class.github.io
Stars: ✭ 25 (+0%)
Mutual labels:  jupyter-notebook

threader

Easy Twitter threads with Python.

Installation

You can install threader with pip:

pip install threader

Alternatively, clone this repository to your computer and then run either:

python setup.py install

or run

pip install -e path/to/cloned/folder

Usage

Threader basically does one thing, illustrated by the following:

from TwitterAPI import TwitterAPI
from threader import Threader

keys = dict(consumer_key='XXX',
            consumer_secret='XXX',
            access_token_key='XXX',
            access_token_secret='XXX')
api = TwitterAPI(**keys)

tweets = ["Chris is testing a nifty little tool he made...",
          "It's for making it easier for him to thread tweets",
          "He heard that the real twitter power users all thread their tweets like pros",
          "but he also likes python, and automating things",
          "sometimes with unnecessary complexity...",
          "so let's see if this works :-D"]
th = Threader(tweets, api, wait=2)
th.send_tweets()

The preceding code resulted in the following twitter thread:

https://twitter.com/choldgraf/status/979755644545777664

Enjoy!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].