Bookmarks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 2 / 2
37 results tagged bots  ✕   ✕
javipalanca/spade: Smart Python Agent Development Environment https://github.com/javipalanca/spade
Fri 08 Feb 2019 04:05:40 PM PST archive.org

A multi-agent systems platform written in Python and based on instant messaging (XMPP). Develop agents that can chat both with other agents and humans. Requires Python v3.6.x or later. Behavior based model. Asynchronous. Web interface. Uses the presence notification XEP.

Documentation: https://spade-mas.readthedocs.io/en/latest/

There is even web based control panel: https://spade-mas.readthedocs.io/en/latest/web.html

python modules frameworks xmpp agents chat bots exocortex
Errbot documentation http://errbot.io/en/latest/
Tue 03 Apr 2018 01:22:36 PM PDT archive.org

A modular Python framework for implementing chatops bots. Aims to make it easy to write new plugins that implement various skills and interfaces. Supports XMPP MUCs. Can be configured from inside of chat, so you don't have to edit a config file and restart the bot. Implements command access control.

exocortex chatbots chatops python bots betafork api modular plugins
Python ChatOps libraries: Opsdroid and Errbot | Opensource.com https://opensource.com/article/18/3/python-chatops-libraries-opsdroid-and-errbot
Tue 03 Apr 2018 10:31:00 AM PDT archive.org

An article about writing chatbots for chatops in python. Links to frameworks to help do this.

exocortex betafork python bots
/questions/27709422/scrapy-simulate-xhr-request-returning-400 https://stackoverflow.com/questions/27709422/scrapy-simulate-xhr-request-returning-400
Tue 20 Mar 2018 12:10:42 AM PDT archive.org

A stackoverflow discussion about how to use python to make an xmlhttprequest. I looked this up because that's how you're supposed to interact with unmark's pseudo API. The accepted answer shows how to do it with scrapy, but I think it could be adapted for use with the requests module. The HTTP method would be POST, and one of the headers would be "X-Requested-With: XMLHttpRequest". It's worth a shot, at any rate.

unmark http python xmlhttprequest exocortex headers scrapy api stackoverflow requests bookmarks bots
GitHub - hackerkid/bots: Tools for building bots https://github.com/hackerkid/bots
Mon 19 Mar 2018 11:58:01 PM PDT archive.org

An awesome list of resources for building bots.

ai ml list awesome programming bots software analytics libraries tools services platforms
pyparsing quick reference: A Python text processing tool http://infohost.nmt.edu/~shipman/soft/pyparsing/web/index.html
Mon 19 Mar 2018 11:55:14 PM PDT archive.org

A chapter-by-chapter tutorial on how to use the PyParsing parser modle for Python.

python modules parser exocortex bots tutorial
Tracery http://tracery.io/
Mon 19 Mar 2018 11:29:44 PM PDT archive.org

Tracery is a procedural generation system for generating text, graphics, and more. Think of it like a procgen framework rather than a tool limited to one particular use case. People use it to generate text and dialogue for games, bots (Twitter, et al), artwork, probably music, recipes, insults... Unusual kinds of games have been developed with it, such as rhythm games and dating sims(!). Worth looking into. There is a version for the Twine game development system and a port to Python (https://github.com/aparrish/pytracery), which would make it very useful to us...

exocortex procgen betafork bots
/abhishekbanthia/Public-APIs https://github.com/abhishekbanthia/Public-APIs
Mon 19 Mar 2018 11:28:58 PM PDT archive.org

An awesome list of public APIs from around the net.

awesome rest exocortex api bots data list
jsvine/markovify https://github.com/jsvine/markovify
Mon 19 Mar 2018 11:28:46 PM PDT archive.org

A Markov chain generator in Python that is still maintained. Aims to be very extensible. Can save and restore its models as JSON files. Key methods can be overridden. Can randomly generate sentences, splice models together. Can plug NLP software into it to do more interesting things. Tries very hard to not just regurgitate things from the model; you can tweak this a bit.

exocortex betafork bots generators python json
Power Outage Maps – Tracking power outages and outage mapping http://poweroutagemaps.com/
Mon 19 Mar 2018 11:24:35 PM PDT archive.org

An online map that tracks power outages around the world. I don't immediately see an API but that doesn't mean that I can't reverse engineer the AJAX to find one.

exocortex bots littlesister
/gunthercox/ChatterBot https://github.com/gunthercox/ChatterBot
Mon 19 Mar 2018 10:46:39 PM PDT archive.org

A Python module that implements an NLP chatbot. Language agnostic, can be trained to speak any spoken language. Train an instance on a corpus and it will be able to communicate in a conversational manner.

conversational nlp github ai ml chatbots modules exocortex python betafork repo bots chatterbot
vinta/awesome-python: A curated list of awesome Python frameworks, libraries, software and resources https://github.com/vinta/awesome-python
Mon 19 Mar 2018 10:46:23 PM PDT archive.org

Github repo for an awesome list of Python resources.

development github python awesome programming exocortex bots
dariusk/corpora: A collection of small corpuses of interesting data for the creation of bots and similar stuff. https://github.com/dariusk/corpora
Mon 19 Mar 2018 10:43:57 PM PDT archive.org

A public domain collection of corpora for training AI ML bots. Consists of many YAML files containing key/value data on many different subjects. Each category contains multiple documents about different related subjects. You won't be able to drop these into your code randomly, you'll need to write a fairly simple parser tuned to the document's schema. There are several libraries in different programming languages for efficiently using one or more of these files in your own project.

nlp publicdomain nlu ai ml corpora languages yaml keyvalue pd bots foss data corpus schema text
Build an Emotionally-Aware Chatbot in 15 Minutes - Algorithmia https://blog.algorithmia.com/building-an-emotionally-aware-chatbot/
Mon 19 Mar 2018 10:40:17 PM PDT archive.org

exocortex bots chatbots Using NLP and statistical analysis to adapt a bot's responses to a conversational partner's calculated emotional state.

exocortex nlp bots chatbots
Manual:Pywikibot - MediaWiki https://www.mediawiki.org/wiki/Manual:Pywikibot
Mon 19 Mar 2018 10:35:36 PM PDT archive.org

Official Mediawiki Python module. Designed to make it easy to interface with a wiki and write tools to manipulate it. Specifically for writing bots.

python mediawiki bots wiki modules
23.2. shlex — Simple lexical analysis — Python 2.7.13 documentation https://docs.python.org/2/library/shlex.html
Mon 19 Mar 2018 04:55:33 PM PDT archive.org

The default parser and lexer that comes with python. Useful for writing minilanguages and DSLs. Maybe useful if I can figure out how to use it.

parser modules python lexer minilanguages exocortex bots
gunthercox/chatterbot-corpus https://github.com/gunthercox/chatterbot-corpus
Mon 19 Mar 2018 03:46:35 PM PDT archive.org

NLP training corpuses for the Chatterbot python module. Contains all of the structured text used to teach the text classifier and semantic analysis engines for the module. All user contributed. Encouages contribution by the community. YAML categories The training data consists of actual conversations and fragments thereof in the file.

nlp conversations exocortex yaml betafork chatterbots crowdsourced bots
page 2 / 2
6295 links, including 412 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn