Writing a python script and it needs to find out what language a block of code is written in. I could easily write this myself, but I'd like to know if a solution already exists.
Pygments is insufficient and unreliable.
|
4
|
Writing a python script and it needs to find out what language a block of code is written in. I could easily write this myself, but I'd like to know if a solution already exists. Pygments is insufficient and unreliable.
|
|||
|
|
|
|
I guess you should try what this very site uses: google-code-prettify (from this question) [EDIT]J.F. Sebastian pointed me to Pygments (see this answer) |
||||||||||
|
|
|
Pygments can guess too. Here is an example from the documentation:
|
|||
|
|
|
|
Vim uses a bunch of interesting tests and regular expressions to look for certain file formats. You can look at the vim instruction file at |
||
|
|
|
|
This can be a little difficult to do reliably. For example, what language is the following:
The most reliable way (aside from having the user select the correct language, of course) is to check if the first line is starts with That will work reliably for a lot of scripting languages (including python, shell scripting, perl, ruby etc etc..), but not for compiled languages.. You could look for unique syntax stylings, or specific keywords and weight each one towards a specific language. For example The other obvious way is to use the file-extension. If it's What are you trying to achieve? If you want to syntax highlight, look at what google-code-prettify does - basically a reasonably intelligent, generic syntax highlighter.. In the above above ambiguous example, |
||
|
|
|
|
Ohcount has been developed for this exactly: http://labs.ohloh.net/ohcount They are using it at www.ohloh.net to count the contribution of people in languages. The bad news is that it is coded in ruby, but I am sure that you can integrate it one way or the other in python. |
||
|
|
|
|
What are your alternatives, among what languages? There is no way to determine this universally. But if you narrow your focus there is probably a tool somewhere |
||
|
|
|
|
You can check highlight.js which automatically highlights the code block, they say they are using some kind of heuristic methods to accomplish this http://softwaremaniacs.org/soft/highlight/en/ |
||
|
|
|
|
As other have said Pygments will be your best bet. |
||
|
|
|
|
With human languages, you can use something like this Language Recognition Chart with a remarkable degree of accuracy, even where you have to rely on small distinctions. (Discussed on SO here.) A similar chart for the languages you are targeting could probably also find a small number of unique characteristics; say for python double underscores, library names, etc. |
||
|
|