Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

brightforme/python-gnip

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-gnip

Gnip PowerTrack Wrapper

Installation

Method with pip: if you have pip installed, just type this in a terminal (sudo is optional on some systems)

pip install python-gnip

Method by hand: download the sources, either on PyPI or (if you want the development version) on Github, unzip everything in one folder, open a terminal and type

python setup.py install

Usage

Rules

from gnip import Gnip
g = Gnip(YOUR_ACCOUNT_NAME,
        login=YOUR_EMAIL,
        password=YOUR_PASSWORD
        source="twitter"
)
print(g.get_rules())

Add and Delete rules

from gnip import Gnip
g = Gnip(YOUR_ACCOUNT_NAME,
        login=YOUR_EMAIL,
        password=YOUR_PASSWORD
        source="twitter"
)
# Add 2 rules
g.add_rules([{"value":"rule1","tag":"tag1"}, {"value":"rule2"}])
# Delete 2 rules
g.delete_rules([{"value":"rule1","tag":"tag1"}, {"value":"rule2"}])

Stream

from gnip import Gnip
g = Gnip(YOUR_ACCOUNT_NAME,
        login=YOUR_EMAIL,
        password=YOUR_PASSWORD
)
s = g.connect_stream()
for line in s.iter_lines():
    if line:
        print(line)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.