pygenie/jobs/hive.py [160:185]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @unicodify
    @arg_list
    @add_to_repr('append')
    def property_file(self, _property_files):
        """
        Sets a property file to use for specifying properties for the job.

        Using the value passed in, the following will be constructed for the
        command-line when executing:
        '-i value'

        Example:
            >>> #hive -i my_properties.prop
            >>> job = HiveJob() \\
            ...     .property_file('/Users/jsmith/my_properties.prop')

        Args:
            _property_file (str): The full path to the property file.

        Returns:
            :py:class:`HiveJob`: self
        """

        self._add_dependency(_property_files)

        return self
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



pygenie/jobs/pig.py [173:198]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @unicodify
    @arg_list
    @add_to_repr('append')
    def property_file(self, _property_files):
        """
        Sets a property file to use for specifying properties for the job.

        Using the value passed in, the following will be constructed for the
        command-line when executing:
        '-P value'

        Example:
            >>> #pig -P my_properties.conf
            >>> job = PigJob() \\
            ...     .property_file('/Users/jsmith/my_properties.conf')

        Args:
            _property_file (str): The full path to the property file.

        Returns:
            :py:class:`PigJob`: self
        """

        self._add_dependency(_property_files)

        return self
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



