Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I found an interesting post to send sms using python. I didn't check the possibility of this. Glad to get your comments on using smtplib for sending sms.
Any way I need to use an open source gateway like kannel for sending sms. Can this code be modified to use with Kannel or else please let me have some good tutorials to use Kannel for sending sms using python.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I like to stream a video in the internet,and I search to find some streaming tools to help me in this manner. I can find one open source dvblast
Now, Is there another open source or paid tools can help me?
Is there any python package to do this?
**hint : I want to use It for stream video like TV shows.
You can use something like:
1)http://www.iis.net/downloads/microsoft/smooth-streaming
2)http://www.ffmpeg.org/ffserver.html
3)http://www.videolan.org/vlc/
that vlc use dvblast!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm trying to find a good and stable network packet sniffer in python, that allows me to do exactly the as I used to with tcpdump.
I found this pycap but it does not seem to be that stable... Another options would be Scapy but it does not handle reassembling TCP streams.
Any other options? Or am I wrong about pycap?
If you're worried about the stability of other python based packages, you can use python's ctypes library to dynamically load in libpcap.so.
You can find out more on using libpcap.so over here while the ctypes documentation is here.
Take a look at PyShark. It allows you to sniff specific interface continuously.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to crawl Indian news websites and their archives (eg. thehindu.com, indianexpress.com and timesofindia.com).
I have heard of boilerplate library in Java used to extract content. But is there any library in python to do this and how t do this?
If this is a repeat question, please help me to point out.
Scrapy is a popular scraping framework for Python
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have found this API for the main OpenStreetMap API http://wiki.openstreetmap.org/wiki/PythonOsmApi. Is there a similar Python API for overpass-api?
There is a Python module for implementing the Overpass API for querying OpenStreetMap data. Check this out:
OpenStreetMap OverPass API Python Module
However i must warn you that this is not maintained, but, as far i know, there exists no other API.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I wanted send free sms using python which API I have to use or any free SMS gateways are present so that I can use in python
I've been using Twilio in conjunction with CherryPy for a while to do sms sending and receiving. It does make the message say "Sent from your twilio trial account -", but if you want to remove that eventually it's only a dollar a month and a cent per text. Hopefully this is useful to you.