Skip to content

guptaabhinav206/gnome-music

 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 96.8%
  • Makefile 1.6%
  • Other 1.6%