All Projects → guillermo-carrasco → Social_ids

guillermo-carrasco / Social_ids

Licence: mit
Get user ids from social network handlers

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Social ids

Network Avatar Picker
A npm module that returns user's social network avatar. Supported providers: facebook, instagram, twitter, tumblr, vimeo, github, youtube and gmail
Stars: ✭ 74 (+722.22%)
Mutual labels:  twitter, facebook, instagram, social-network
Spam Bot 3000
Social media research and promotion, semi-autonomous CLI bot
Stars: ✭ 79 (+777.78%)
Mutual labels:  cli, twitter, facebook, instagram
Pow assent
Multi-provider authentication for your Pow enabled app
Stars: ✭ 236 (+2522.22%)
Mutual labels:  twitter, facebook, instagram
Whizzz-The-ChatApp
Whizzz is a real-time, one-to-one Android chat application made using Firebase, a beautiful user interface, and a push-notification feature.
Stars: ✭ 66 (+633.33%)
Mutual labels:  instagram, facebook, social-network
Embera
A Oembed consumer library, that gives you information about urls. It helps you replace urls to youtube or vimeo for example, with their html embed code. It has advanced features like offline support, responsive embeds and caching support.
Stars: ✭ 268 (+2877.78%)
Mutual labels:  twitter, facebook, instagram
Assent
Multi-provider framework in Elixir
Stars: ✭ 126 (+1300%)
Mutual labels:  twitter, facebook, instagram
Postwill
Posting to the most popular social media from Ruby
Stars: ✭ 181 (+1911.11%)
Mutual labels:  twitter, facebook, instagram
Timeliner
In general, Timeliner obtains items from data sources and stores them in a timeline.
Stars: ✭ 2,911 (+32244.44%)
Mutual labels:  twitter, facebook, instagram
Socialcounters
jQuery/PHP - Collection of Social Media APIs that display number of your social media fans. Facebook Likes, Twitter Followers, Instagram Followers, YouTube Subscribers, etc..
Stars: ✭ 104 (+1055.56%)
Mutual labels:  twitter, facebook, instagram
Social Media Profiles Regexs
📇 Extract social media profiles and more with regular expressions
Stars: ✭ 324 (+3500%)
Mutual labels:  twitter, facebook, instagram
Laravel Social Auto Posting
🌈Laravel social auto posting
Stars: ✭ 306 (+3300%)
Mutual labels:  twitter, facebook, social-network
Socialbox Termux
SocialBox is a Bruteforce Attack Framework [ Facebook , Gmail , Instagram ,Twitter ] , Coded By Belahsan Ouerghi Edit By init__0 for termux on android
Stars: ✭ 324 (+3500%)
Mutual labels:  twitter, facebook, instagram
Sharer.js
🔛 🔖 Create your own social share buttons. No jquery.
Stars: ✭ 1,624 (+17944.44%)
Mutual labels:  twitter, facebook, social-network
Faitagram
(Doesn't work anymore)
Stars: ✭ 117 (+1200%)
Mutual labels:  twitter, facebook, instagram
Hyprpulse
Brute force multiple accounts at once
Stars: ✭ 105 (+1066.67%)
Mutual labels:  twitter, facebook, instagram
DaProfiler
DaProfiler allows you to create a profile on your target based in France only. The particularity of this program is its ability to find the e-mail addresses your target.
Stars: ✭ 58 (+544.44%)
Mutual labels:  instagram, facebook, social-network
Social Network Harvester V1.0
Stars: ✭ 5 (-44.44%)
Mutual labels:  twitter, facebook, social-network
Easylogin
Login effortlessly with different social networks like Facebook, Twitter or Google Plus
Stars: ✭ 90 (+900%)
Mutual labels:  twitter, facebook, social-network
Socialauthhelper
Easy social network authorization for Android. Supports Facebook, Twitter, Instagram, Google+, Vkontakte. Made by Stfalcon
Stars: ✭ 94 (+944.44%)
Mutual labels:  twitter, facebook, instagram
Socialmanagertools Gui
🤖 👻 Desktop application for Instagram Bot, Twitter Bot and Facebook Bot
Stars: ✭ 293 (+3155.56%)
Mutual labels:  twitter, facebook, instagram

Social IDs

Build StatusPyPI version

What?

Get user ids from social network handlers

Why?

If you're a developer and work with social networks you'll know that getting the user ID is not straightforward. Usually you have to use some sort of SDK and configure access tokens to get that information.

Inspired in ids_please package for Ruby I created this Python tool so that you can use it as a CLI tool or import it in your code. No need for tokens or SDKs, it does search for the ID within the page source.

How?

pip install social_ids

As CLI tool

Quite simple:

~> socialid --help
Usage: socialid [OPTIONS] NETWORK HANDLER

Options:
  --help  Show this message and exit.

As a package to import in your code

Simple as well

# Import the networks you want
from social_ids.networks import facebook

# Then use the get_id method with the handler
_id = facebook.get_id('zuck')

Networks

Right now social_ids works with:

  • Facebook
  • Twitter
  • Instagram

Notes

Recently [2017-01-13] discovered that, at least for Twitter, the ID won't appear in the source code until the first post has been created. So a Twitter account without any post won't be found by social_ids.

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].