bountrisv / gnome-music

Music player and management application

Home Page:http://www.gnome.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GNOME Music
===========

Music is the new GNOME music playing application.


=== Where can I find more? ===

We have a wiki page at
https://wiki.gnome.org/Apps/Music

You can join us on the IRC:
#gnome-music on GIMPNet


=== Building from jhbuild ===

Follow the BuildGnome tutorial for newcomers at https://wiki.gnome.org/Newcomers/BuildGnome

After installing jhbuild, you have to build gnome-music and all its dependencies. The task can be done by simply running:
$ jhbuild sysdeps --install gnome-music
$ jhbuild build gnome-music

Finally, start gnome music with:
$ jhbuild run gnome-music


=== Troubleshooting ===

Jhbuild fires import errors for python packages like:
"ImportError: /opt/gnome/lib64/python2.7/site-packages/"
Do:
 $ jhbuild shell
 $ export PYTHONPATH=/opt/gnome/lib/python3.3/site-packages:/opt/gnome/lib64/python3.3/site-packages
 $ gnome-music


=== Coding style ===

GNOME Music is written in Python and aspires to adhere to the coding style described in PEP-8:
https://www.python.org/dev/peps/pep-0008/

Use of docstrings is recommended following PEP-257:
https://www.python.org/dev/peps/pep-0257/

The content of docstrings uses the Sphinx markup style:
http://www.sphinx-doc.org/

Use PyGI shorthands for manipulating GtkTreeModel:
 model[iter][0] = "artist"
 artist, title = model[iter][1, 4]

About

Music player and management application

http://www.gnome.org/

License:Other


Languages

Language:Python 96.9%Language:Makefile 1.5%Language:CSS 0.6%Language:M4 0.5%Language:Groff 0.4%Language:Shell 0.2%