Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 9 days ago.
Improve this question
Menfess bot is a twitter bot that is widely used in Southeast Asia, it allows you to send messages anonymously. The menfess account will process incoming messages with certain triggers and forward them as "tweets" in the timeline.
The way that menfess bots use is usually by hooking or retrieving message data from the API provided by the twitter developer, but on circulating issues twitter developers will make it all not free as of February 1, 2023, thus requiring bot developers to pay to keep using the system as before.
I asked and imagined whether they can automate such as [read message > if the word trigger is found > posting tweets to the timeline] somehow I don't know how. Is it possible to use VPS? Or there are other solutions that do not rely on the twitter developer system (especially in the API)
Thanks in advance
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Is there any API for spokeo ? I wanted to get results in json or xml format and I tried finding an api for it but couldn't. Has anyone tried scraping spokeo with or without the api ? I'm sure we can scrape in a general way but I dont know how to proceed when search results come up with more than one location area. Thanks
According to Spokeo's terms of use, scrapers are explicitly prohibited, as are any "derivative works" - even if all such works do is frame content from their site.
If you publish this in a publicly available application, be prepared for some flak for it.
I think an easier answer would be to work with the FullContact Person API
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
as stated in bug #17429, official support for the python api is ending, does anyone know of a up-to-date facebook api for python? or should I look for another language or web framework?
[...] does anyone know of a up-to-date facebook api for python?
Facepy might be what you're looking for.
According to that ticket support for SDK ends. The whole facebook API is language/technology agnostic and just a regular OAuth-based RESTful one
While I develop Facebook apps in PHP (still supported), I switched to mainly using the javascript SDK. I think it's a better user experience and Facebook automatically upgrades it when they change the rules. Which seems quite often. Typically, there isn't any change required in your javascript code.
Django Facebook is mature:
https://github.com/tschellenbach/Django-facebook
There's nothing language/framework agnostic about the facebook API.
The open graph api has it's own syntax.
Oauth takes care of authentication, but you still need to convert the output data to something your app can work with.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm just starting with mwclient. I'm going to create bots to query our MediaWiki database and make small revisions.
But I cannot find anywhere a simple list of python commands like how to get ages of pages, contents of categories, contents of pages, etc.
Does anyone know a good starters resource?
The official docs at https://github.com/mwclient/mwclient/wiki have some introductory tutorials. I'm in charge for documentation for mwclient but haven't had enough time to really expand them - could use help from anyone who is willing.
One of my colleagues just sent me a link to the MediaWiki API wiki page.
I currently use python+urllib for API queries, and mwclient whenever I need to edit/create a page.
An useful place to get started with mwclient (read/edit/create a page):
http://brianna.modernthings.org/article/134/write-api-enabled-on-wikimedia-sites
The Bot Manual also has tons of good info and links, e.g. creating a bot.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I've import contacts from gmail by using gdata api,
and is there any apis like that for hotmail/live/Aol ?
There is Windows Live Contact API for Hotmail/Live mail.
Yahoo Contact API for Yahoo also exists, but to this date, no AOL contact api.
I would suggest you try openinviter (openinviter.com) to import contacts. Unfortunately, you will not have OAuth capabilities, but it is the best class out there and works with 90+ different email providers.
Note: it is written in php, but creating a wrapper won't be too hard.
If you are able to export from them to the standard vCard format, you can read and process vCard data using the vobject package.
Hotmail/Live
There is Windows Live Contact API for Hotmail/Live mail, which is similar to GData API.
AOL
As far as I remember AOL doesn't provide API to access its address book, however they working on it (for long time)...
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
My site requires sending periodic update emails to all our registered clients.
To keep our lists clear, I want to track all failed deliveries and purge the mailing lists accordingly. I am assuming I am not the first nor the last to do this.
Can anyone recommend an existing app/library that I can use to accomplish this goal ?
Thank you
I think you need a mailing list server like mailman, there is django-mailman (a django's admin interface for mailman), and follow this steps:
Install mailman
Install django-mailman
Complete your user's registration algorithm for your users and register them in mailman.
When you need send a mail, send it to you mailman list.
Have a lot of fun!
You should have a look at mailchimp