parent
8c7637772c
commit
c4dea1860f
@ -1,2 +1,226 @@
|
||||
# OpenLibraryWS_Wrapper
|
||||
# OpenLibraryWS_wrapper
|
||||
|
||||
## Summary
|
||||
|
||||
This project proposes a Web Service wrapping the [OpenLibrary](https://openlibrary.org/). This is an archive of books and editions and it proposes a web api. This work here is a wrapper in order to simplify the use of this api, with less routes, and also to be interchangeable with another web service that will be issued shortly, owning its proper database of books.
|
||||
Its purpose is mainly and only to be used by my students in order to practice a little bit _continuous integration_ and _continuous deployment_.
|
||||
|
||||
## Table of Contents
|
||||
|
||||
[Documentation](#documentation)
|
||||
[Getting Started](#getting-started)
|
||||
[Where are we now?](#where-are-we-now)
|
||||
[Usage](#usage)
|
||||
[Running the tests](#running-the-tests)
|
||||
[Known issues and limitations](#known-issues-and-limitations)
|
||||
[Built with](#built-with)
|
||||
[Authors](#authors)
|
||||
[Acknowledgements](#acknowledgements)
|
||||
|
||||
## Documentation
|
||||
|
||||
There is no other documentation than this ```ReadMe```, at least for now.
|
||||
But here are some useful informations.
|
||||
### Package diagram
|
||||
```mermaid
|
||||
flowchart LR
|
||||
|
||||
DTOAbstractLayer -.-> LibraryDTO
|
||||
JSonReader -.-> LibraryDTO
|
||||
OpenLibraryClient -.-> DTOAbstractLayer
|
||||
OpenLibraryClient -.-> JSonReader
|
||||
StubbedDTO -.-> DTOAbstractLayer
|
||||
StubbedDTO -.-> JSonReader
|
||||
OpenLibraryWrapper -.-> OpenLibraryClient
|
||||
OpenLibraryWrapper -.-> StubbedDTO
|
||||
```
|
||||
This work contains some projects:
|
||||
- ```LibraryDTO```: contains all **DTO** (_Data Transfer Object_) used by the web service(s) of this project
|
||||
- ```DTOAbstractLayer```: defines a unique interface (```IDtoManager```) for all objects that can be used to make requests
|
||||
- ```JSonReader```: contains some tools simplifying the parsing of json request results coming from ```OpenLibrary API```
|
||||
- ```StubbedDTO```: is only used for testing the preceding packages. It contains some json files copied from ```OpenLibrary API``` request results
|
||||
- ```OpenLibraryClient```: this is the wrapper of ```OpenLibrary API```. It implements ```IDtoManager``` and uses ```OpenLibrary API``` requests to get books and authors.
|
||||
- ```OpenLibraryWrapper```: defines our Web Service and its routes.
|
||||
|
||||
### Routes of ```OpenLibraryWrapper``` web service:
|
||||
There are very few routes:
|
||||
- **get books by title**: allows to get books containing a particular string in their titles.
|
||||
```
|
||||
book/getbooksbytitle?title=ne&index=0&count=5
|
||||
book/getbooksbytitle?title=ne&index=0&count=5&sort=old
|
||||
```
|
||||
- **get books by author**: allows to get books containing a particular string in the author names or alternate names.
|
||||
```
|
||||
book/getbooksbyauthor?name=al&index=0&count=5
|
||||
book/getbooksbyauthor?name=al&index=0&count=5&sort=old
|
||||
```
|
||||
- **get books by author id**: allows to get books of a particular author by giving its id.
|
||||
```
|
||||
book/getbooksbyauthorid?id=OL1846639A&index=0&count=5
|
||||
book/getbooksbyauthorid?id=OL1846639A&index=0&count=5&sort=old
|
||||
```
|
||||
- **get authors by name**: allows to get authors whose name (or alternate names) contains a particular string.
|
||||
```
|
||||
book/getauthorsbyname?name=al&index=0&count=5
|
||||
book/getauthorsbyname?name=al&index=0&count=5&sort=name
|
||||
```
|
||||
- **get book by isbn**: allows to get a book by giving its isbn.
|
||||
```
|
||||
book/getBookByIsbn/9782330033118
|
||||
```
|
||||
- **get book by id**: allows to get a book by giving its id.
|
||||
```
|
||||
book/getBookById/OL25910297M
|
||||
```
|
||||
- **get author by id**: allows to get an author by giving its id.
|
||||
```
|
||||
book/getAuthorById/OL1846639A
|
||||
```
|
||||
|
||||
### Class diagram
|
||||
|
||||
For what it's worth...
|
||||
You will probably not need it...
|
||||
Nevertheless, it shows how **DTO** classes are working with each other.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
direction LR
|
||||
class BookDTO {
|
||||
+Id : string
|
||||
+Title : string
|
||||
+Publishers : List~string~
|
||||
+PublishDate : DateTime
|
||||
+ISBN13 : string
|
||||
+Series : List~string~
|
||||
+NbPages : int
|
||||
+Format : string
|
||||
+ImageSmall : string
|
||||
+ImageMedium : string
|
||||
+ImageLarge : string
|
||||
}
|
||||
|
||||
class Languages {
|
||||
<<enum>>
|
||||
Unknown,
|
||||
French,
|
||||
}
|
||||
|
||||
class WorkDTO {
|
||||
+Id : string
|
||||
+Description : string
|
||||
+Title : string
|
||||
+Subjects : List~string~
|
||||
}
|
||||
|
||||
class ContributorDTO {
|
||||
+Name : string
|
||||
+Role : string
|
||||
}
|
||||
|
||||
class AuthorDTO {
|
||||
+Id : string
|
||||
+Name : string
|
||||
+ImageSmall : string
|
||||
+ImageMedium : string
|
||||
+ImageLarge : string
|
||||
+Bio : string
|
||||
+AlternateNames : List~string~
|
||||
+BirthDate : DateTime?
|
||||
+DeathDate : DateTime?
|
||||
}
|
||||
|
||||
class LinkDTO {
|
||||
+Title : string
|
||||
+Url : string
|
||||
}
|
||||
|
||||
class RatingsDTO {
|
||||
+Average : float
|
||||
+Count : int
|
||||
}
|
||||
|
||||
BookDTO --> "1" Languages : Language
|
||||
BookDTO --> "*" ContributorDTO : Contributors
|
||||
AuthorDTO --> "*" LinkDTO : Links
|
||||
WorkDTO --> "*" AuthorDTO : Authors
|
||||
WorkDTO --> "1" RatingsDTO : Ratings
|
||||
BookDTO --> "*" AuthorDTO : Authors
|
||||
BookDTO --> "*" WorkDTO : Works
|
||||
```
|
||||
|
||||
## Getting Started
|
||||
|
||||
If you want to test this project locally, simply ```git clone``` this project, and open the solution ```Sources/OpenLibraryWS_Wrapper.sln```.
|
||||
|
||||
### Prerequisites
|
||||
- Visual Studio 2019 or Visual Studio for Mac
|
||||
- .NET 7.0 or higher
|
||||
### Setup
|
||||
Just ```git clone``` and build the solution.
|
||||
|
||||
## Where are we now?
|
||||
|
||||
Well, some parts are missing for pedagogical purposes...
|
||||
- There is no CI/CD file. You will have to prepare it all by yourself.
|
||||
- There is no files allowing to generate documentation (doxygen documentation for the code or swagger for the web api routes)
|
||||
- There is no ```Dockerfile```.
|
||||
|
||||
Moreover, a lot of stuff could be enhanced, but I do not have time for this:
|
||||
- there are too few unit tests
|
||||
- there are too few comments in code
|
||||
- the second version of the web service with its own database is not ready yet (but soon hopefully).
|
||||
|
||||
## Running the tests
|
||||
You can run some unit tests but there are few. The unit tests project is ```OpenLibraryWrapper_UT```.
|
||||
Run them in Visual Studio or using the command ```dotnet test```.
|
||||
|
||||
## Known issues and limitations
|
||||
- CI/CD is not set yet.
|
||||
- Documentation is not deployed.
|
||||
|
||||
## Built with
|
||||
.NET and Visual Studio for Mac
|
||||
|
||||
## Next steps
|
||||
This project should be enhanced with _Continuous Integration_ and _Continuous Deployment_ pipelines.
|
||||
Here are the different steps that should be added:
|
||||
1. **build** job:
|
||||
All the projects of the solution should be built and published.
|
||||
In order to write this job, one could find useful information in:
|
||||
- the [**code first documentation about CI build jobs**](https://codefirst.iut.uca.fr/documentation/CodeFirst/docusaurus/GuidesTutorials/docs/CI-CD/CI/build/)
|
||||
- the [**dotnet official documentation**](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet) about .NET command lines.
|
||||
To build and publish a .NET solution, you usually need to ```restore```, ```build``` and ```publish```.
|
||||
2. **unit tests** job:
|
||||
All the unit tests projects of the solution should be run.
|
||||
In order to write this job, one could find useful information in:
|
||||
- the [**code first documentation about CI unit tests jobs**](https://codefirst.iut.uca.fr/documentation/CodeFirst/docusaurus/GuidesTutorials/docs/CI-CD/CI/tests/)
|
||||
- the [**dotnet official documentation**](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet) about .NET command lines.
|
||||
To run .NET unit tests projects, you usually need to ```restore``` and ```test```.
|
||||
3. **continuous integration** job:
|
||||
A code analysis should be run and exported to **Sonarqube**.
|
||||
One can find useful information in:
|
||||
- the [**code first documentation about CI unit tests jobs**](https://codefirst.iut.uca.fr/documentation/CodeFirst/docusaurus/GuidesTutorials/docs/CI-CD/CI/codeInspection/)
|
||||
- the [**SonarQube documentation**](https://docs.sonarsource.com/sonarqube/latest/analyzing-source-code/scanners/sonarscanner-for-dotnet/) for .NET
|
||||
4. **documentation** jobs:
|
||||
Two different documentations should be published:
|
||||
- **doxygen**: although very few comments are present in the source code, a doxygen documentation should be deployed.
|
||||
It could look like this:
|
||||
<img src="screens/doxygen1.png" width="300px"/>
|
||||
And the footer could look like this:
|
||||
<img src="screens/doxygen2.png" width="300px"/>
|
||||
One could find useful information in:
|
||||
- the [**code first documentation about doxygen jobs**](https://codefirst.iut.uca.fr/documentation/CodeFirst/docusaurus/GuidesTutorials/docs/CI-CD/DocJobs/doxygen/)
|
||||
- the [**official doxygen documentation**](https://www.doxygen.nl/)
|
||||
- **swagger**: the routes of the web service should be documented through a Swagger documentation. But nothing has been prepared in Web Service project. First, one should modify the .NET project to add Swagger documentation generation, and next modify the documentation job.
|
||||
It could look like this:
|
||||
<img src="screens/swagger.png" width="300px"/>
|
||||
And the footer could look like this:
|
||||
One could find useful information in:
|
||||
- the [**documentation about how to integrate Swagger in a .NET project**](https://learn.microsoft.com/en-us/aspnet/core/tutorials/getting-started-with-swashbuckle?view=aspnetcore-7.0&tabs=visual-studio).
|
||||
|
||||
## Authors
|
||||
Marc Chevaldonné
|
||||
|
||||
## Acknowledgements
|
||||
Camille Petitalot and Cédric Bouhours
|
@ -0,0 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\LibraryDTO\LibraryDTO.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -0,0 +1,15 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\LibraryDTO\LibraryDTO.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -0,0 +1,16 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@ -0,0 +1,14 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\LibraryDTO\LibraryDTO.csproj" />
|
||||
<ProjectReference Include="..\DtoAbstractLayer\DtoAbstractLayer.csproj" />
|
||||
<ProjectReference Include="..\JsonReader\JsonReader.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -0,0 +1,40 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(RunConfiguration)' == 'https' " />
|
||||
<PropertyGroup Condition=" '$(RunConfiguration)' == 'http' " />
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.10" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\LibraryDTO\LibraryDTO.csproj">
|
||||
<GlobalPropertiesToRemove></GlobalPropertiesToRemove>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\StubbedDTO\StubbedDTO.csproj">
|
||||
<GlobalPropertiesToRemove></GlobalPropertiesToRemove>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\DtoAbstractLayer\DtoAbstractLayer.csproj">
|
||||
<GlobalPropertiesToRemove></GlobalPropertiesToRemove>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\OpenLibraryClient\OpenLibraryClient.csproj">
|
||||
<GlobalPropertiesToRemove></GlobalPropertiesToRemove>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Condition=" '$(EnableDefaultCompileItems)' == 'true' " Update="Program.cs">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -0,0 +1,41 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:34424",
|
||||
"sslPort": 44344
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "http://localhost:5117",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
},
|
||||
"dotnetRunMessages": true
|
||||
},
|
||||
"https": {
|
||||
"commandName": "Project",
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "https://localhost:7263;http://localhost:5117",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
},
|
||||
"dotnetRunMessages": true
|
||||
},
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
|
||||
<IsPackable>false</IsPackable>
|
||||
<IsTestProject>true</IsTestProject>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
|
||||
<PackageReference Include="xunit" Version="2.4.2" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="coverlet.collector" Version="3.2.0">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\OpenLibraryWrapper\OpenLibraryWrapper.csproj" />
|
||||
<ProjectReference Include="..\StubbedDTO\StubbedDTO.csproj" />
|
||||
<ProjectReference Include="..\LibraryDTO\LibraryDTO.csproj" />
|
||||
<ProjectReference Include="..\DtoAbstractLayer\DtoAbstractLayer.csproj" />
|
||||
<ProjectReference Include="..\OpenLibraryClient\OpenLibraryClient.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -0,0 +1,32 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\LibraryDTO\LibraryDTO.csproj" />
|
||||
<ProjectReference Include="..\DtoAbstractLayer\DtoAbstractLayer.csproj" />
|
||||
<ProjectReference Include="..\JsonReader\JsonReader.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Remove="books\" />
|
||||
<None Remove="authors\" />
|
||||
<None Remove="works\" />
|
||||
<None Remove="ratings\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="books\" />
|
||||
<Folder Include="authors\" />
|
||||
<Folder Include="works\" />
|
||||
<Folder Include="ratings\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="*\*.json">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -0,0 +1 @@
|
||||
{"name": "Michel Demuth", "personal_name": "Michel Demuth", "last_modified": {"type": "/type/datetime", "value": "2008-08-26 02:41:15.604911"}, "key": "/authors/OL1846639A", "type": {"key": "/type/author"}, "id": 6527877, "revision": 2}
|
@ -0,0 +1 @@
|
||||
{"personal_name": "Dick, Philip K.", "source_records": ["amazon:8445007327", "bwb:9780722129562", "amazon:0792776232", "ia:pacificpark0000dick", "amazon:2277213799", "amazon:2266163019", "bwb:9798599263227", "amazon:1433276712", "ia:ejonescreoilmond0000dick", "amazon:6051719164", "amazon:6254493632", "amazon:2277117749", "amazon:1987781619", "amazon:1433248239", "amazon:1480594407"], "alternate_names": ["Philip Kindred Dick", "Philip Dick", "Philip Kendred Dick", "Philip K Dick"], "bio": "Philip Kindred Dick was an American novelist, short story writer, and essayist whose published work during his lifetime was almost entirely in the science fiction genre. Dick explored sociological, political and metaphysical themes in novels dominated by monopolistic corporations, authoritarian governments, and altered states. In his later works, Dick's thematic focus strongly reflected his personal interest in metaphysics and theology. He often drew upon his own life experiences and addressed the nature of drug abuse, paranoia and schizophrenia, and transcendental experiences in novels such as A Scanner Darkly and VALIS.\r\n\r\nSource and more information: [Wikipedia (EN)](http://en.wikipedia.org/wiki/Philip_K._Dick)", "type": {"key": "/type/author"}, "death_date": "2 March 1982", "remote_ids": {"isni": "0000000121251093", "wikidata": "Q171091", "viaf": "27063583"}, "name": "Philip K. Dick", "links": [{"title": "Wikipedia link to Philip K Dick", "url": "http://en.wikipedia.org/wiki/Philip_K._Dick", "type": {"key": "/type/link"}}], "photos": [6295259], "birth_date": "16 December 1928", "key": "/authors/OL274606A", "latest_revision": 23, "revision": 23, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2022-11-29T21:21:41.951561"}}
|
@ -0,0 +1 @@
|
||||
{"name": "H\u00e9l\u00e8ne Collon", "last_modified": {"type": "/type/datetime", "value": "2008-04-30 08:14:56.482104"}, "key": "/authors/OL3113922A", "type": {"key": "/type/author"}, "id": 11970257, "revision": 1}
|
@ -0,0 +1 @@
|
||||
{"name": "Alain Damasio", "key": "/authors/OL3980331A", "type": {"key": "/type/author"}, "remote_ids": {"wikidata": "Q2829704"}, "birth_date": "1 August 1969", "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2008-04-30T20:50:18.033121"}, "last_modified": {"type": "/type/datetime", "value": "2022-12-19T19:05:32.693708"}}
|
@ -0,0 +1 @@
|
||||
{"personal_name": "James S. A. Corey", "remote_ids": {"isni": "0000000382626033", "viaf": "266413968", "wikidata": "Q6142591"}, "source_records": ["amazon:1478933771", "amazon:1528822218", "amazon:1456121650", "bwb:9780356510385", "amazon:0678452547", "bwb:9780356517773"], "alternate_names": ["Daniel Abraham", "Ty Franck", "James S.A. Corey", "James James S. A. Corey"], "type": {"key": "/type/author"}, "key": "/authors/OL6982995A", "entity_type": "org", "links": [{"title": "Source", "url": "http://www.danielabraham.com/james-s-a-corey/", "type": {"key": "/type/link"}}], "bio": {"type": "/type/text", "value": "James S.A. Corey is the pen name used by collaborators [Daniel Abraham](https://openlibrary.org/authors/OL1427729A/Daniel_Abraham) and [Ty Franck](https://openlibrary.org/authors/OL7523472A/Ty_Franck).\r\n\r\nThe first and last name are taken from Abraham's and Franck's middle names, respectively, and S.A. are the initials of Abraham's daughter."}, "photos": [11112303], "name": "James S. A. Corey", "latest_revision": 13, "revision": 13, "created": {"type": "/type/datetime", "value": "2011-10-20T08:06:05.906616"}, "last_modified": {"type": "/type/datetime", "value": "2023-05-18T18:14:26.659278"}}
|
@ -0,0 +1 @@
|
||||
{"key": "/authors/OL7475792A", "name": "Ada Palmer", "type": {"key": "/type/author"}, "latest_revision": 4, "revision": 4, "created": {"type": "/type/datetime", "value": "2019-03-11T19:38:25.579004"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-07T07:11:29.213401"}}
|
@ -0,0 +1 @@
|
||||
{"type": {"key": "/type/author"}, "name": "Frank Herbert", "key": "/authors/OL9956442A", "source_records": ["amazon:2221252306"], "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-11-14T17:07:35.515652"}, "last_modified": {"type": "/type/datetime", "value": "2021-11-14T17:07:35.515652"}}
|
@ -0,0 +1 @@
|
||||
{"publishers": ["Actes Sud"], "title": "L'\u00c9veil du L\u00e9viathan", "number_of_pages": 624, "isbn_13": ["9782330033118"], "covers": [7412481], "languages": [{"key": "/languages/fre"}], "publish_date": "4 juin 2014", "key": "/books/OL25910297M", "publish_places": ["France"], "works": [{"key": "/works/OL17334140W"}], "type": {"key": "/type/edition"}, "source_records": ["amazon:2330033117"], "latest_revision": 5, "revision": 5, "created": {"type": "/type/datetime", "value": "2016-04-22T11:47:01.838591"}, "last_modified": {"type": "/type/datetime", "value": "2023-02-02T01:19:11.921173"}}
|
@ -0,0 +1 @@
|
||||
{"works": [{"key": "/works/OL19635836W"}], "title": "La Volont\u00e9 de se battre", "publishers": ["Le B\u00e9lial'"], "publish_date": "2020", "key": "/books/OL35698083M", "type": {"key": "/type/edition"}, "identifiers": {}, "covers": [12392970], "isbn_13": ["9782843449758"], "classifications": {}, "languages": [{"key": "/languages/fre"}], "contributors": [{"name": "Michelle Charrier", "role": "Translator"}], "number_of_pages": 526, "series": ["Terra Ignota #3"], "physical_format": "paperback", "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2021-12-07T02:23:07.593997"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-07T02:24:57.135563"}}
|
@ -0,0 +1 @@
|
||||
{"type": {"key": "/type/edition"}, "title": "La Zone du Dehors", "authors": [{"key": "/authors/OL3980331A"}], "publish_date": "Feb 04, 2021", "source_records": ["amazon:2072927528"], "number_of_pages": 656, "publishers": ["FOLIO", "GALLIMARD"], "isbn_10": ["2072927528"], "isbn_13": ["9782072927522"], "physical_format": "pocket book", "full_title": "La Zone du Dehors", "covers": [12393645], "works": [{"key": "/works/OL19960903W"}], "key": "/books/OL35699439M", "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2021-12-07T22:26:13.534930"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-07T22:26:13.534930"}}
|
@ -0,0 +1 @@
|
||||
{"type": {"key": "/type/edition"}, "title": "Dune - tome 1", "authors": [{"key": "/authors/OL9956442A"}, {"key": "/authors/OL1846639A"}], "publish_date": "Nov 22, 2012", "source_records": ["amazon:2266233203"], "number_of_pages": 832, "publishers": ["POCKET", "Pocket"], "isbn_10": ["2266233203"], "isbn_13": ["9782266233200"], "physical_format": "pocket book", "notes": {"type": "/type/text", "value": "Source title: Dune - tome 1 (1)"}, "works": [{"key": "/works/OL27962193W"}], "key": "/books/OL38218739M", "latest_revision": 1, "revision": 1, "created": {"type": "/type/datetime", "value": "2022-05-30T17:18:00.228322"}, "last_modified": {"type": "/type/datetime", "value": "2022-05-30T17:18:00.228322"}}
|
@ -0,0 +1 @@
|
||||
{"type": {"key": "/type/edition"}, "title": "Total Recall et autres r\u00e9cits", "authors": [{"key": "/authors/OL274606A"}, {"key": "/authors/OL3113922A"}], "publish_date": "Jul 12, 2012", "source_records": ["amazon:2070448908"], "number_of_pages": 448, "publishers": ["FOLIO", "GALLIMARD"], "isbn_10": ["2070448908"], "isbn_13": ["9782070448906"], "physical_format": "pocket book", "works": [{"key": "/works/OL28185064W"}], "key": "/books/OL38586212M", "covers": [13858141], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2022-07-10T01:29:29.296699"}, "last_modified": {"type": "/type/datetime", "value": "2023-04-07T22:44:13.567567"}}
|
@ -0,0 +1 @@
|
||||
{"summary": {"average": null, "count": 0}, "counts": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}}
|
@ -0,0 +1 @@
|
||||
{"summary": {"average": 4.8, "count": 5, "sortable": 3.216059213089321}, "counts": {"1": 0, "2": 0, "3": 0, "4": 1, "5": 4}}
|
@ -0,0 +1 @@
|
||||
{"summary": {"average": 4.0, "count": 1, "sortable": 2.3286737413641063}, "counts": {"1": 0, "2": 0, "3": 0, "4": 1, "5": 0}}
|
@ -0,0 +1 @@
|
||||
{"summary": {"average": 3.0, "count": 1, "sortable": 2.19488243981746}, "counts": {"1": 0, "2": 0, "3": 1, "4": 0, "5": 0}}
|
@ -0,0 +1 @@
|
||||
{"summary": {"average": null, "count": 0}, "counts": {"1": 0, "2": 0, "3": 0, "4": 0, "5": 0}}
|
@ -0,0 +1 @@
|
||||
{"title": "L'\u00c9veil du L\u00e9viathan", "key": "/works/OL17334140W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL6982995A"}}], "type": {"key": "/type/work"}, "covers": [7412481], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2016-04-22T11:47:01.838591"}, "last_modified": {"type": "/type/datetime", "value": "2023-02-02T01:19:11.921173"}}
|
@ -0,0 +1 @@
|
||||
{"description": "\"The long years of near-utopia have come to an abrupt end. Peace and order are now figments of the past. Corruption, deception, and insurgency hum within the once steadfast leadership of the Hives, nations without fixed location. The heartbreaking truth is that for decades, even centuries, the leaders of the great Hives bought the world's stability with a trickle of secret murders, mathematically planned. So that no faction could ever dominate. So that the balance held. The Hives' fa\u00e7ade of solidity is the only hope they have for maintaining a semblance of order, for preventing the public from succumbing to the savagery and bloodlust of wars past. But as the great secret becomes more and more widely known, that fa\u00e7ade is slipping away. Just days earlier, the world was a pinnacle of human civilization. Now everyone--Hives and hiveless, Utopians and sensayers, emperors and the downtrodden, warriors and saints--scrambles to prepare for the seemingly inevitable war\"--", "covers": [8544084, 8619055, 10180814], "key": "/works/OL19635836W", "authors": [{"author": {"key": "/authors/OL7475792A"}, "type": {"key": "/type/author_role"}}], "title": "The Will to Battle", "subjects": ["Utopias", "Fiction", "Fiction, science fiction, general", "series:terra_ignota"], "type": {"key": "/type/work"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2019-04-21T08:07:12.674468"}, "last_modified": {"type": "/type/datetime", "value": "2021-12-07T07:08:28.885088"}}
|
@ -0,0 +1 @@
|
||||
{"title": "La zone du dehors", "key": "/works/OL19960903W", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3980331A"}}], "type": {"key": "/type/work"}, "covers": [13472433], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2019-07-17T23:01:16.580404"}, "last_modified": {"type": "/type/datetime", "value": "2023-03-15T21:59:10.897047"}}
|
@ -0,0 +1 @@
|
||||
{"type": {"key": "/type/work"}, "title": "Dune - tome 1", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL9956442A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL1846639A"}}], "key": "/works/OL27962193W", "covers": [13823878], "latest_revision": 2, "revision": 2, "created": {"type": "/type/datetime", "value": "2022-05-30T17:18:00.228322"}, "last_modified": {"type": "/type/datetime", "value": "2023-04-04T09:05:11.531979"}}
|
@ -0,0 +1 @@
|
||||
{"type": {"key": "/type/work"}, "title": "Total Recall et autres r\u00e9cits", "authors": [{"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL274606A"}}, {"type": {"key": "/type/author_role"}, "author": {"key": "/authors/OL3113922A"}}], "key": "/works/OL28185064W", "covers": [13858141], "latest_revision": 3, "revision": 3, "created": {"type": "/type/datetime", "value": "2022-07-10T01:29:29.296699"}, "last_modified": {"type": "/type/datetime", "value": "2023-04-07T22:44:13.567567"}}
|
After Width: | Height: | Size: 170 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 254 KiB |
Loading…
Reference in new issue