File: sources.md

package info (click to toggle)
guessit 3.8.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,196 kB
  • sloc: python: 4,731; sh: 10; makefile: 7
file content (24 lines) | stat: -rw-r--r-- 818 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Getting the source code
=======================

GuessIt is actively developed on [GitHub](https://github.com/guessit-io/guessit).

You can either clone the public repository:

    $ git clone https://github.com/guessit-io/guessit.git

Download the [tarball](https://github.com/guessit-io/guessit/tarball/master):

    $ curl -L https://github.com/guessit-io/guessit/tarball/master -o guessit.tar.gz

Or download the [zipball](https://github.com/guessit-io/guessit/zipball/master):

    $ curl -L https://github.com/guessit-io/guessit/zipball/master -o guessit.zip

Once you have a copy of the source, you can embed it in your Python package, install it into your site-packages folder like that:

    $ python setup.py install

or use it directly from the source folder for development:

    $ python setup.py develop