├── .gitignore ├── LICENSE ├── README.md ├── example_test.go └── v1 ├── arxiv.go ├── arxiv_test.go ├── filters.go ├── filters_test.go └── testdata ├── deep dream-0.atom ├── deep dream-1.atom └── deep dream-2.atom /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orijtech/arxiv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orijtech/arxiv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orijtech/arxiv/HEAD/README.md -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orijtech/arxiv/HEAD/example_test.go -------------------------------------------------------------------------------- /v1/arxiv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orijtech/arxiv/HEAD/v1/arxiv.go -------------------------------------------------------------------------------- /v1/arxiv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orijtech/arxiv/HEAD/v1/arxiv_test.go -------------------------------------------------------------------------------- /v1/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orijtech/arxiv/HEAD/v1/filters.go -------------------------------------------------------------------------------- /v1/filters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orijtech/arxiv/HEAD/v1/filters_test.go -------------------------------------------------------------------------------- /v1/testdata/deep dream-0.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orijtech/arxiv/HEAD/v1/testdata/deep dream-0.atom -------------------------------------------------------------------------------- /v1/testdata/deep dream-1.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orijtech/arxiv/HEAD/v1/testdata/deep dream-1.atom -------------------------------------------------------------------------------- /v1/testdata/deep dream-2.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orijtech/arxiv/HEAD/v1/testdata/deep dream-2.atom --------------------------------------------------------------------------------