navierstokes
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
navierstokes [2016/04/16 16:52] – [Download Latest Release] sekula | navierstokes [2019/01/19 23:02] (current) – removed admin | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== NavierStokes ====== | ||
- | {{ : | ||
- | |||
- | NavierStokes is a set of Python classes that allow you to bridge between social network accounts. These classes rely on a number of external tools to do the hard work of actually talking to networks. There is a master " | ||
- | |||
- | It employs "fuzzy text matching", | ||
- | |||
- | NavierStokes considers only posts made in the last hour when it scans the streams from different social networks. It won't re-post something that is 6 hours or 6 days old. | ||
- | |||
- | ===== License ===== | ||
- | |||
- | |||
- | Copyright 2014, Stephen Jacob Sekula [[https:// | ||
- | |||
- | Licensed under the Apache License, Version 2.0 (the " | ||
- | |||
- | [[http:// | ||
- | |||
- | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. | ||
- | |||
- | ===== Download Latest Release ===== | ||
- | |||
- | < | ||
- | git clone https:// | ||
- | git checkout v1.0.1 | ||
- | </ | ||
- | |||
- | Release notes: | ||
- | * Removed Facebook support - fbcmd is an abandoned project and there is no suitable replacement that speaks to the current FB API. If you want to push to FB, I recommend using a bridge from another social network, like the one from Twitter to FB (and vice versa). | ||
- | * The Message Object now supports a link back to the original post on the web (e.g. a URL pointing to the pump.io web object corresponding to the original note, or a URL pointing to the RSS news story turned into a message). | ||
- | * SocialHandlers now support a " | ||
- | * Twitter now will post all messages shared to it, even those with >140 characters. Message content is truncated, depending on whether there is an attached image or not, and a link to the original message is embedded in the tweet. This will also help " | ||
- | * Twitter images are now no longer just t.co links inside a tweet; the image HTML and content itself is downloaded and processed, the image is rescued from the original tweet, and physically attached to messages posted to other social networks. | ||
- | * Improved unicode handling in messages for Python 2.7.X, which is still the basic Python supported by this code. | ||
- | * BUGFIXES: handle missing message object attributes in a more robust way; improved use of subprocess for running and checking the success of commands like " | ||
- | * Email any bugs you find to < | ||
- | |||
- | Browse the code: [[https:// | ||
- | |||
- | ---- | ||
- | ===== Requirements ===== | ||
- | |||
- | * cliaspora-0.1.9.tgz (Diaspora access) ([[https:// | ||
- | * PyPump 0.5 (pump.io access) | ||
- | * git clone https:// | ||
- | * cd PyPump | ||
- | * git fetch | ||
- | * git checkout v0.5 | ||
- | * cURL (GNU Social access) | ||
- | * LYNX (for converting HTML to plain text - some social networks don't understand HTML) | ||
- | * FuzzyWuzzy Python fuzzy text-matching libraries | ||
- | * [[https:// | ||
- | * git clone https:// | ||
- | * cd fuzzywuzzy | ||
- | * python setup.py install | ||
- | * t (Ruby Gem for interacting with Twitter) | ||
- | * This is needed if you want to bridge to Twitter. | ||
- | * [[http:// | ||
- | * gem install t (requires Ruby 1.9 or greater) | ||
- | * txt2html: needed for clean text -> HTML conversion (e.g. from Twitter messages to Pump.io) | ||
- | * ImageMagick: | ||
- | |||
- | In general, here are the Python libraries needed to make this package operate: | ||
- | |||
- | < | ||
- | abc | ||
- | calendar | ||
- | codecs | ||
- | commands | ||
- | copy | ||
- | feedparser | ||
- | fuzzywuzzy | ||
- | getopt | ||
- | hashlib | ||
- | inspect | ||
- | lockfile | ||
- | logging | ||
- | math | ||
- | os | ||
- | pycurl | ||
- | pypump | ||
- | re | ||
- | requests | ||
- | subprocess | ||
- | sys | ||
- | time | ||
- | unicodedata | ||
- | xml.dom.minidom | ||
- | </ | ||
- | |||
- | ===== Installation ===== | ||
- | |||
- | - Check out the code from the git repository above. This automatically creates the navierstokes/ | ||
- | - You should create a configuration file for NavierStokes: | ||
- | - If you intend to bridge between Pump.io and other networks, you must use PyPump to register a client (e.g. NavierStokesApp) on Pump.io. Follow their instructions for getting the client credentials and tokens. Enter those into the < | ||
- | - Make sure Cliaspora is available in the PATH environment variable, or Diaspora interactions will fail. | ||
- | |||
- | ===== Example navierstokes.cfg file ===== | ||
- | |||
- | |||
- | Be sure to make this .cfg file only readable by you: | ||
- | |||
- | > chmod 600 ~/ | ||
- | |||
- | < | ||
- | [gnusocial] | ||
- | type: gnusocial | ||
- | site: https:// | ||
- | username: myname | ||
- | password: XXXXXXXXXXXXXXXX | ||
- | sharelevel: Public | ||
- | |||
- | [pump.io] | ||
- | type: pump.io | ||
- | webfinger: user@pump.server | ||
- | client_credentials: | ||
- | client_tokens: | ||
- | sharelevel: All | ||
- | noshare_keyword: | ||
- | |||
- | [diaspora] | ||
- | type: diaspora | ||
- | webfinger: user@diaspora.server | ||
- | password: XXXXXXXXXXXXXXXXXXX | ||
- | aspect: public | ||
- | sharelevel: All | ||
- | noshare_keyword: | ||
- | |||
- | [twitter] | ||
- | type: twitter | ||
- | sharelevel: Public | ||
- | shortenurls: | ||
- | |||
- | [my blog rss feed] | ||
- | type: rss | ||
- | feed_url: http:// | ||
- | max_message_age: | ||
- | |||
- | [urlshortening] | ||
- | service: shortenizer | ||
- | serviceURL: http:// | ||
- | serviceKey: pseudosecretKey | ||
- | #service: ur1 | ||
- | # | ||
- | # | ||
- | |||
- | </ | ||
- | |||
- | Note that " | ||
- | |||
- | " | ||
- | |||
- | " | ||
- | |||
- | The URL shortening section allows you to define a custom URL shortener. If unspecified, | ||
- | |||
- | ===== Running NavierStokes ===== | ||
- | |||
- | Once you have written a .cfg file and setup account information in it (and, in the case of Pump.io and Twitter, authenticated PyPump and t against those respective networks as clients), you can try executing NavierStokes manually: | ||
- | |||
- | > python ./ | ||
- | |||
- | If you get errors, try running in Debug Mode and see what you can learn: | ||
- | |||
- | > python ./ | ||
- | |||
- | I run NavierStokes every 5 minutes using a CRON job: | ||
- | |||
- | < | ||
- | */5 * * * * bash -l -c ' | ||
- | </ | ||
- | |||
- | If you get any errors that are unrelated to passwords, logging into, report them to < | ||
- | |||
- | ===== A simple program to authenticate PyPump against your pump.io instance ===== | ||
- | |||
- | For PyPump v0.5, this ought to work: | ||
- | |||
- | < | ||
- | # | ||
- | |||
- | from pypump import PyPump, Client | ||
- | |||
- | client = Client( | ||
- | webfinger=" | ||
- | type=" | ||
- | name=" | ||
- | ) | ||
- | |||
- | def simple_verifier(url): | ||
- | print 'Go to: ' + url | ||
- | return raw_input(' | ||
- | |||
- | pump = PyPump(client=client, | ||
- | client_credentials = pump.get_registration() # will return [< | ||
- | client_tokens = pump.get_token() # [< | ||
- | |||
- | print " | ||
- | print " | ||
- | </ | ||
- | |||
- | ===== Bugs and Features ===== | ||
- | |||
- | * [[community: | ||
- | |||
- | ===== Roadmap ===== | ||
- | |||
- | Since v0.5.0, it's become clear to me what the roadmap for this software is going to be. | ||
- | |||
- | * Releases until we hit 0.9.0 are all to be considered " | ||
- | * Releases in v0.9.X will be the " | ||
- | * Releases in v1.X.X will be the stable versions resulting from the beta period | ||
- | * The goal for v2.X.X is a bit ambitious - maybe even unnecessary - but that would be to bridge conversations that result from your posts shared across networks. At the very least, people should know that an interesting conversation is resulting on another network. | ||
- | |||
- | I would be happy to just coast on v1.X.X until the federated networks implement APIs that allow automatic bridging (e.g. if GNU Social implements the pump.io API, it likely won't be necessary to bridge anymore with NavierStokes). | ||
- | |||
- | ===== Other Information ===== | ||
- | |||
- | |||
- | * The logo is a mashup of a Wikimedia Commons image from the Navier-Stokes Equation Wikipedia Page and the logo of the Pump.io, GNU Social, and Diaspora networks. I intentionally left Twitter off the logo as I don't want to deal with issues of using their logo. | ||
- | * Bernoulli Fluid Flow image: " | ||
- | * Pump.io logo: " | ||
- | * GNU Social Logo: http:// | ||
- | * Diaspora Logo: " | ||
- | * WTF is this thing called " | ||
- | * Well, I am a physicist. That's reason number one. Reason number two is that the " | ||
- | |||
navierstokes.1460825533.txt.gz · Last modified: 2016/04/16 16:52 by sekula