Python matplotlib.__file__() Examples
The following are 5 code examples for showing how to use matplotlib.__file__(). These examples are extracted from open source projects. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example.
You may check out the related API usage on the sidebar.
You may also want to check out all available functions/classes of the module
matplotlib
, or try the search function
.
Example 1
Project: oggm Author: OGGM File: conf.py License: BSD 3-Clause "New" or "Revised" License | 5 votes |
def write_index(): """This is to write the docs for the index automatically.""" here = os.path.dirname(__file__) filename = os.path.join(here, '_generated', 'version_text.txt') try: os.makedirs(os.path.dirname(filename)) except FileExistsError: pass text = text_version if '+' not in oggm.__version__ else text_dev with open(filename, 'w') as f: f.write(text)
Example 2
Project: oggm Author: OGGM File: conf.py License: BSD 3-Clause "New" or "Revised" License | 5 votes |
def write_gdir_doc(): """This is to write the docs for glacierdir automatically.""" here = os.path.dirname(__file__) origfile = os.path.join(here, '_templates', 'basenames.txt') filename = os.path.join(here, '_generated', 'basenames.txt') try: os.makedirs(os.path.dirname(filename)) except FileExistsError: pass shutil.copyfile(origfile, filename) from oggm.cfg import BASENAMES cnt = [' '] for k in sorted(BASENAMES.keys()): cnt += [BASENAMES.info_str(k)] + [' '] cnt = '\n'.join(cnt) file = open(filename, 'a') try: file.write(cnt) finally: file.close()
Example 3
Project: python3_ios Author: holzschu File: test_pyplot.py License: BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_pyplot_up_to_date(): gen_script = Path(mpl.__file__).parents[2] / "tools/boilerplate.py" if not gen_script.exists(): pytest.skip("boilerplate.py not found") orig_contents = Path(plt.__file__).read_text() try: subprocess.run([sys.executable, str(gen_script)], check=True) new_contents = Path(plt.__file__).read_text() assert orig_contents == new_contents finally: Path(plt.__file__).write_text(orig_contents)
Example 4
Project: coffeegrindsize Author: jgagneastro File: test_pyplot.py License: MIT License | 5 votes |
def test_pyplot_up_to_date(): gen_script = Path(mpl.__file__).parents[2] / "tools/boilerplate.py" if not gen_script.exists(): pytest.skip("boilerplate.py not found") orig_contents = Path(plt.__file__).read_text() try: subprocess.run([sys.executable, str(gen_script)], check=True) new_contents = Path(plt.__file__).read_text() assert orig_contents == new_contents finally: Path(plt.__file__).write_text(orig_contents)
Example 5
Project: imgviz Author: wkentaro File: draw.py License: MIT License | 5 votes |
def _get_font(size, font_path=None): import matplotlib if font_path is None: fonts_path = osp.join( osp.dirname(matplotlib.__file__), "mpl-data/fonts/ttf" ) font_path = osp.join(fonts_path, "DejaVuSansMono.ttf") font = PIL.ImageFont.truetype(font=font_path, size=size) return font