Tag: Python
-
Verifying that an MP3 File is valid in Python
This post is a result of many attempts at trying to find an existing solution, deciding that nothing did what I needed, and writing the code myself. Specifically, I wanted to be able to verify whether or not that a file is a valid MP3 file from Python. I did not want any dependency on […]
-
Esperanto Support Plugin for Anki
So I decided to learn Esperanto, which as an avid user of the SRS application Anki, meant I needed to either enter Esperanto’s special characters (ĉ, Ä, Ä¥, ĵ, Å, Å) into my flash cards, which can’t easily be typed with the US International keyboard layout, or I could deal with the ugly “x method” […]
-
BibleFeed Project: Consuming a SOAP web service
This is the third post in the BibleFeed Project. If you haven’t already, read the first and second posts. In my last post I stated the difficulty I was having finding a python library to handle the SOAP web service which I’ll be using to get the data for this project. I gave up on […]
-
The difficulty of consuming a .NET Web Service using Python
This post is not part of my Biblefeed series of posts, but it is very much related. For the Biblefeed project, I was hoping to consume this web service in order to get the data I need to make the project work. The web service appears to be a SOAP web service written in .Net. […]
-
BibleFeed Project: Creating the models
This is the second post relating to the BibleFeed Project. If you haven’t yet, you may want to read the first post. As with most applications, this one needs to store data. To store data in a django project, I need to first create models representing the data. While I’m sure that the following will […]