This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import logging | |
| import click | |
| from twisted.internet import reactor | |
| from scrapy import Item, Spider | |
| from scrapy.crawler import CrawlerRunner | |
| from scrapy.settings import Settings | |
| from scrapy.utils.log import configure_logging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import re | |
| import warnings | |
| import click | |
| from sphinx.ext.intersphinx import fetch_inventory | |
| _inventory_uris = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This file demonstrates how to create an empty HDF5 file using the C API. | |
| // If you happen to have HDF5 installed using MacPorts you can compile the | |
| // exmaple using | |
| // | |
| // gcc -I/opt/local/include HDF5_create_file.c -L/opt/local/lib -lhdf5 -o HDF5_create_file | |
| // | |
| // 2016, Dominik Steinberger | |
| #include "hdf5.h" | |
| int main() { |