parent
ee2b2bf2dc
commit
6b94c23a2f
@ -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,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</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,18 @@
|
||||
<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>
|
||||
<DocumentationFile>bin\Debug\net7.0\LibraryDTO.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Release\net7.0\LibraryDTO.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
@ -1,14 +1,15 @@
|
||||
using PocketBook.Applicative_VM;
|
||||
|
||||
namespace PocketBook;
|
||||
|
||||
public partial class Auteur : ContentPage
|
||||
{
|
||||
public Auteur()
|
||||
public NavigatorVM NavigateCommandBooks { get; private set; }
|
||||
|
||||
public Auteur(NavigatorVM navigator)
|
||||
{
|
||||
NavigateCommandBooks = navigator;
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private async void RetourMainMenu(object sender, EventArgs e)
|
||||
{
|
||||
await Navigation.PopToRootAsync();
|
||||
}
|
||||
}
|
@ -1,17 +1,15 @@
|
||||
using CommunityToolkit.Maui.Views;
|
||||
using PocketBook.Applicative_VM;
|
||||
|
||||
namespace PocketBook;
|
||||
|
||||
public partial class LaterPage : ContentPage
|
||||
{
|
||||
public LaterPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
public NavigatorVM NavigateCommandBooks { get; private set; }
|
||||
|
||||
|
||||
private async void RetourMainMenu(object sender, EventArgs e)
|
||||
public LaterPage(NavigatorVM navigator)
|
||||
{
|
||||
await Navigation.PopToRootAsync();
|
||||
NavigateCommandBooks = navigator;
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -1,18 +1,16 @@
|
||||
using CommunityToolkit.Maui.Views;
|
||||
using PocketBook.Applicative_VM;
|
||||
|
||||
namespace PocketBook;
|
||||
|
||||
public partial class LikePage : ContentPage
|
||||
{
|
||||
public LikePage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
public NavigatorVM NavigateCommandBooks { get; private set; }
|
||||
|
||||
|
||||
private async void RetourMainMenu(object sender, EventArgs e)
|
||||
public LikePage(NavigatorVM navigator)
|
||||
{
|
||||
await Navigation.PopToRootAsync();
|
||||
NavigateCommandBooks = navigator;
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
}
|
@ -1,17 +1,15 @@
|
||||
using CommunityToolkit.Maui.Views;
|
||||
using PocketBook.Applicative_VM;
|
||||
|
||||
namespace PocketBook;
|
||||
|
||||
public partial class MarkPage : ContentPage
|
||||
{
|
||||
public MarkPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
public NavigatorVM NavigateCommandBooks { get; private set; }
|
||||
|
||||
|
||||
private async void RetourMainMenu(object sender, EventArgs e)
|
||||
public MarkPage(NavigatorVM navigator)
|
||||
{
|
||||
await Navigation.PopToRootAsync();
|
||||
NavigateCommandBooks = navigator;
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -1,16 +1,15 @@
|
||||
using CommunityToolkit.Maui.Views;
|
||||
using PocketBook.Applicative_VM;
|
||||
|
||||
namespace PocketBook;
|
||||
|
||||
public partial class SharePage : ContentPage
|
||||
{
|
||||
public SharePage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
public NavigatorVM NavigateCommandBooks { get; private set; }
|
||||
|
||||
private async void RetourMainMenu(object sender, EventArgs e)
|
||||
public SharePage(NavigatorVM navigator)
|
||||
{
|
||||
await Navigation.PopToRootAsync();
|
||||
NavigateCommandBooks = navigator;
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -1,17 +1,15 @@
|
||||
using CommunityToolkit.Maui.Views;
|
||||
using PocketBook.Applicative_VM;
|
||||
|
||||
namespace PocketBook;
|
||||
|
||||
public partial class StatutPage : ContentPage
|
||||
{
|
||||
public StatutPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
public NavigatorVM NavigateCommandBooks { get; private set; }
|
||||
|
||||
|
||||
private async void RetourMainMenu(object sender, EventArgs e)
|
||||
public StatutPage(NavigatorVM navigator)
|
||||
{
|
||||
await Navigation.PopToRootAsync();
|
||||
NavigateCommandBooks = navigator;
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -1,18 +1,19 @@
|
||||
using CommunityToolkit.Maui.Core;
|
||||
using CommunityToolkit.Maui.Views;
|
||||
using PocketBook.Applicative_VM;
|
||||
|
||||
namespace PocketBook;
|
||||
|
||||
public partial class TousPage : ContentPage
|
||||
{
|
||||
public NavigatorVM NavigateCommandBooks { get; private set; }
|
||||
public ScanMenuVM ScanMenuVM { get; private set; }
|
||||
|
||||
public TousPage()
|
||||
public TousPage(NavigatorVM navigation)
|
||||
{
|
||||
ScanMenuVM = new ScanMenuVM();
|
||||
NavigateCommandBooks = navigation;
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public async void OnBookSelected(object sender, EventArgs e)
|
||||
{
|
||||
await Navigation.PushAsync(new BookDetail());
|
||||
BindingContext = this;
|
||||
}
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Model\Model.csproj" />
|
||||
<ProjectReference Include="..\StubbedDTO\StubbedDTO.csproj" />
|
||||
<ProjectReference Include="..\Utils\Utils.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -0,0 +1,36 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<!--<ItemGroup>
|
||||
<None Remove="books\" />
|
||||
<None Remove="authors\" />
|
||||
<None Remove="works\" />
|
||||
<None Remove="ratings\" />
|
||||
<None Remove="authors\OL13066A.json" />
|
||||
</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>-->
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\DtoAbstractLayer\DtoAbstractLayer.csproj" />
|
||||
<ProjectReference Include="..\JsonReader\JsonReader.csproj" />
|
||||
<ProjectReference Include="..\LibraryDTO\LibraryDTO.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="*\*.json" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -0,0 +1 @@
|
||||
{"alternate_names": ["Herbert George Wells", "H. Wells"], "type": {"key": "/type/author"}, "key": "/authors/OL13066A", "photos": [14364506, 6255164, 6255163, 5542282], "birth_date": "21 September 1866", "wikipedia": "http://en.wikipedia.org/wiki/H._G._Wells", "title": "(Wells, H. G.(Herbert George))", "fuller_name": "Herbert George Wells", "remote_ids": {"project_gutenberg": "30", "librarything": "wellshg", "goodreads": "880695", "wikidata": "Q42511", "librivox": "146", "isni": "0000000122832703", "viaf": "97006424", "amazon": "B08JKH6BRG"}, "personal_name": "H. G. Wells", "source_records": ["amazon:0353051969", "amazon:1545593752", "amazon:0353360031", "amazon:0343204800", "amazon:0900948442", "amazon:0359695256", "amazon:1541399528", "bwb:9798748338851", "bwb:9798711942399", "amazon:154230038X", "bwb:9798515967789", "amazon:1548545791", "amazon:167576655X", "amazon:1096406985", "amazon:0342716778", "amazon:0343312492", "amazon:1642262722", "amazon:1539515087", "bwb:9798515810764", "bwb:9798594591745", "amazon:2329219377", "bwb:9798588040884", "amazon:151971002X", "amazon:2070500179", "amazon:1535132841", "ia:warofworlds0000well_p4j3", "bwb:9798589404036", "amazon:8380321359", "bwb:9798549302624", "amazon:1530609798", "amazon:1420938495", "amazon:1006147551", "bwb:9798458602198", "bwb:9798520694045", "bwb:9780342740260", "bwb:9798541851458", "bwb:9798653436154", "amazon:9385018116", "amazon:1014334756", "bwb:9798459326819", "bwb:9798796783801", "amazon:1006147721", "amazon:1536901911", "bwb:9798442116618", "bwb:9798446719273", "bwb:9798715872197", "bwb:9798411853216", "bwb:9781398812130", "bwb:9798537902386", "bwb:9798537873945", "bwb:9798578578908", "bwb:9798760273000", "bwb:9798708376572", "bwb:9780342996100", "promise:bwb_daily_pallets_2022-03-17", "bwb:9798833824375", "ia:warofworldsillus0000well", "bwb:9781958437681", "amazon:1298631807", "bwb:9798709836068", "promise:bwb_daily_pallets_2022-08-23", "bwb:9798685274663", "promise:bwb_daily_pallets_2022-08-01", "bwb:9781728974033", "bwb:9781731472441", "bwb:9781790605743", "marc:marc_columbia/Columbia-extract-20221130-030.mrc:206198520:1318", "bwb:9798840336311", "promise:bwb_daily_pallets_2022-12-19", "amazon:8461947932", "bwb:9798364688729", "amazon:201998198X", "bwb:9781549506130"], "name": "H. G. Wells", "death_date": "13 August 1946", "bio": "Herbert George Wells was an English author, best known for his work in the science fiction genre. He was also a prolific writer in many genres, including contemporary novels, history, politics and social commentary.", "latest_revision": 44, "revision": 44, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-08-31T06:46:36.893522"}}
|
@ -0,0 +1 @@
|
||||
{"location": "Paris, France", "photos": [5548027], "type": {"key": "/type/author"}, "death_date": "24 November 1985", "alternate_names": ["Rene\u0301 Barjavel", "Barjavel Ren\u00e9", "Rene Barjavel", "Barjavel Rene"], "key": "/authors/OL152472A", "source_records": ["amazon:8498724929", "promise:bwb_daily_pallets_2022-03-17", "promise:bwb_daily_pallets_2021-02-03", "amazon:2070361691", "promise:bwb_daily_pallets_2021-02-17"], "birth_date": "1911-01-24", "name": "Ren\u00e9 Barjavel", "bio": "Ren\u00e9 Barjavel born in Nyons, France, the son of a baker. In 1914, while his father served in World War I, his mother ran the bakery, and he was left alone much of the time to discover the world through exploration and reading. His his mother died of sleeping sickness in 1922, when he was just 11 years old, and he was sent to boarding school in Nyons. In 1923, when his father was unable to pay the school's fees to continue his studies, he became the proteg\u00e9 of the school's director, Abel Boisselier, and accompanied him to the college in Cusset. During his stay there, which lasted until he ran out of funds in 1927, he continued to study literature. After leaving school, he worked worked several jobs, including as a real estate agent and a bank employee, until 1929 when he became a journalist in Progress Allier in Moulins.\r\n\r\nIn 1935, he met the publisher Robert Deno\u00ebl, and he moved to Paris to work at \u00c9ditions Deno\u00ebl. In 1936 he married Madeleine de Wattripont. While working at Deno\u00ebl, he continued to work as a journalist for the weekly Le Merle Blanc, where he wrote film reviews. In 1939, he joined the war with Germany and was sent to the Pyrenees, but returned to Paris when the armistice was declared and Deno\u00ebl re-opened his publishing house. During this time, his first novel, Roland, le chevalier plus fort que le lion (Roland, the Knight More Proud than the Lion) (1942), was published, with help from Deno\u00ebl. He wrote Le Voyageur imprudent (Future Times Three) in 1943, and became the first writer to present the famous grandfather paradox of time travel. In 1944 he became literary director at \u00c9ditions Deno\u00ebl. In 1945, Deno\u00ebl was killed.\r\n\r\nAfter the war, and the failure of his latest novel, Le diable l'emporte (The Devil Wins) (1948), he left novel-writing for the cinema. However, he contracted tuberculosis and ran out of money before completing his first project, \"Barabbas, pour qui Dieu ne fut qu\u2019un temps\". He spent some time recovering in the south of France, returning to Paris in 1951.\r\n\r\nHe worked as a screenwriter in Paris, and in 1962 he became involved in science fiction, at that time a growing fiction genre in France. He published the novel Colomb de la lune (Columbus of the Moon) in 1962. In 1968 he published La Nuit des temps (The Ice People), which was very successful and popular, and won the Prix des libraires. In 1969, he began a weekly column in the Sunday newspaper Les Libres Propos. In 1972, he was a co-founder of the Prix de science-fiction Apollo, and was on the jury. In 1981, at age 70, he stopped writing his columns in the Journal du Dimanche and resumed writing novels. He died in 1985, having written over 25 novels and several screenplays.", "wikipedia": "http://en.wikipedia.org/wiki/Ren%C3%A9_Barjavel", "personal_name": "Ren\u00e9 Barjavel", "remote_ids": {"viaf": "99967531", "wikidata": "Q562556", "isni": "0000000109285020"}, "latest_revision": 7, "revision": 7, "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "last_modified": {"type": "/type/datetime", "value": "2023-02-20T12:24:20.987187"}}
|
@ -0,0 +1 @@
|
||||
{"photos": [8567902], "created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "latest_revision": 5, "name": "Ted Chiang", "key": "/authors/OL1604887A", "personal_name": "Ted Chiang", "revision": 5, "type": {"key": "/type/author"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-30T12:42:07.389520"}, "remote_ids": {"viaf": "85807457", "wikidata": "Q503095", "isni": "0000000109218979"}}
|
@ -0,0 +1,12 @@
|
||||
{
|
||||
"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 @@
|
||||
{"name": "Michael A. Hiltzik", "personal_name": "Michael A. Hiltzik", "last_modified": {"type": "/type/datetime", "value": "2008-09-07 09:06:34.939911"}, "key": "/authors/OL239209A", "type": {"key": "/type/author"}, "id": 623786, "revision": 2}
|
@ -0,0 +1,34 @@
|
||||
{
|
||||
"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": "Pennac", "last_modified": {"type": "/type/datetime", "value": "2008-04-30 08:14:56.482104"}, "key": "/authors/OL3113661A", "type": {"key": "/type/author"}, "id": 11969949, "revision": 1}
|
@ -0,0 +1 @@
|
||||
{"name": "Gilles Goullet", "last_modified": {"type": "/type/datetime", "value": "2008-04-30 08:14:56.482104"}, "key": "/authors/OL3113900A", "type": {"key": "/type/author"}, "id": 11970651, "revision": 1}
|
@ -0,0 +1,11 @@
|
||||
{
|
||||
"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,17 @@
|
||||
{
|
||||
"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 @@
|
||||
{"created": {"type": "/type/datetime", "value": "2008-04-01T03:28:50.625462"}, "latest_revision": 6, "name": "Daniel Pennac", "key": "/authors/OL55888A", "personal_name": "Daniel Pennac", "birth_date": "1944", "revision": 6, "type": {"key": "/type/author"}, "last_modified": {"type": "/type/datetime", "value": "2020-09-30T12:22:32.446485"}, "remote_ids": {"viaf": "29539018", "wikidata": "Q332689", "isni": "0000000121258295"}}
|
@ -0,0 +1 @@
|
||||
{"birth_date": "1802", "key": "/authors/OL5989984A", "personal_name": "Alexandre Dumas", "remote_ids": {"wikidata": "Q38337", "isni": "0000000121012885", "viaf": "51688902"}, "source_records": ["ia:lacomtessedechar0000duma_c0h3", "amazon:0343253933", "ia:sanjianke0008dazh", "amazon:1087918545", "amazon:1361580682", "amazon:1374919551", "amazon:2091870757", "amazon:2363583477", "bwb:9798725078565", "amazon:1374990906", "amazon:1374997609", "amazon:1374828378", "ia:lestroismousquet0000duma_h9z1", "amazon:1080726861", "amazon:1376310082", "amazon:1530054605", "amazon:1548458821", "amazon:2743400463", "amazon:1535180129"], "alternate_names": ["Da Zhong Ma", "Alexander Dumas", "Alejandro Dumas"], "type": {"key": "/type/author"}, "death_date": "1870", "name": "Alexandre Dumas", "title": "(Dumas, Alexandre, 1802-1870)", "photos": [12919454], "latest_revision": 30, "revision": 30, "created": {"type": "/type/datetime", "value": "2008-10-27T00:19:50.151000"}, "last_modified": {"type": "/type/datetime", "value": "2022-09-28T00:27:01.465804"}}
|
@ -0,0 +1,36 @@
|
||||
{
|
||||
"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 @@
|
||||
{"source_records": ["bwb:9781801108454"], "type": {"key": "/type/author"}, "personal_name": "Adrian Tchaikovsky", "links": [{"title": "Wikipedia", "url": "https://en.wikipedia.org/wiki/Adrian_Tchaikovsky", "type": {"key": "/type/link"}}], "birth_date": "1972", "name": "Adrian Tchaikovsky", "key": "/authors/OL7468980A", "remote_ids": {"storygraph": "5a684299-8db8-4c82-8f0c-26f2c6c8ad7b", "viaf": "102929550", "wikidata": "Q4685389"}, "latest_revision": 8, "revision": 8, "created": {"type": "/type/datetime", "value": "2019-03-06T04:53:32.329596"}, "last_modified": {"type": "/type/datetime", "value": "2023-08-07T23:24:42.671051"}}
|
@ -0,0 +1,15 @@
|
||||
{
|
||||
"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 @@
|
||||
{"name": "Robert Charles Wilson", "created": {"type": "/type/datetime", "value": "2020-05-08T21:00:30.785249"}, "last_modified": {"type": "/type/datetime", "value": "2020-05-08T21:00:30.785249"}, "latest_revision": 1, "key": "/authors/OL7876839A", "type": {"key": "/type/author"}, "revision": 1}
|
@ -0,0 +1,42 @@
|
||||
{
|
||||
"remote_ids": {
|
||||
"viaf": "59083797",
|
||||
"wikidata": "Q7934",
|
||||
"isni": "0000000121347853"
|
||||
},
|
||||
"name": "Frank Herbert",
|
||||
"source_records": [ "amazon:3870703903", "amazon:2253113190", "amazon:1427228493" ],
|
||||
"alternate_names": [ "Herbert, Frank", "FRANK HERBERT", "Frank HERBERT", "herbert-frank", "frank herbert", "Herbert Frank", "Frank Herbert Dost Korpe", "HERBERT FRANK", "Franck Herbert", "F Herbert" ],
|
||||
"photos": [ 12194537, 7277115, 10643754 ],
|
||||
"links": [
|
||||
{
|
||||
"url": "http://en.wikipedia.org/wiki/Frank_Herbert",
|
||||
"type": { "key": "/type/link" },
|
||||
"title": "Wikipedia English"
|
||||
},
|
||||
{
|
||||
"url": "http://fr.wikipedia.org/wiki/Frank_Herbert",
|
||||
"type": { "key": "/type/link" },
|
||||
"title": "Wikipedia France"
|
||||
}
|
||||
],
|
||||
"key": "/authors/OL79034A",
|
||||
"birth_date": "8 October 1920",
|
||||
"death_date": "11 February 1986",
|
||||
"type": { "key": "/type/author" },
|
||||
"personal_name": "Herbert, Frank.",
|
||||
"bio": {
|
||||
"type": "/type/text",
|
||||
"value": "Real name: Franklin Patrick Herbert Jr."
|
||||
},
|
||||
"latest_revision": 15,
|
||||
"revision": 15,
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2008-04-01T03:28:50.625462"
|
||||
},
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2021-11-12T11:41:55.357817"
|
||||
}
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
{
|
||||
"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,35 @@
|
||||
{
|
||||
"publishers": [ "Denoe\u0308l" ],
|
||||
"title": "Le voyageur imprudent.",
|
||||
"notes": {
|
||||
"type": "/type/text",
|
||||
"value": "French text."
|
||||
},
|
||||
"identifiers": {
|
||||
"librarything": [ "182578" ],
|
||||
"goodreads": [ "106786" ]
|
||||
},
|
||||
"covers": [ 7267304 ],
|
||||
"languages": [ { "key": "/languages/fre" } ],
|
||||
"isbn_10": [ "2070364852" ],
|
||||
"isbn_13": [ "9782070364852" ],
|
||||
"publish_date": "1958",
|
||||
"publish_country": "fr ",
|
||||
"key": "/books/OL18547803M",
|
||||
"authors": [ { "key": "/authors/OL152472A" } ],
|
||||
"publish_places": [ "Paris" ],
|
||||
"works": [ { "key": "/works/OL11466820W" } ],
|
||||
"type": { "key": "/type/edition" },
|
||||
"local_id": [ "urn:bwbsku:O6-CHO-999" ],
|
||||
"source_records": [ "promise:bwb_daily_pallets_2022-05-23" ],
|
||||
"latest_revision": 7,
|
||||
"revision": 7,
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2008-10-17T19:42:31.933490"
|
||||
},
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2023-01-14T06:54:32.286139"
|
||||
}
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
{
|
||||
"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,30 @@
|
||||
{
|
||||
"publishers": [ "Gallimard" ],
|
||||
"number_of_pages": 736,
|
||||
"covers": [ 7891413 ],
|
||||
"physical_format": "Paperback",
|
||||
"key": "/books/OL26210208M",
|
||||
"isbn_13": [ "9782070464234" ],
|
||||
"pagination": "700",
|
||||
"classifications": {},
|
||||
"title": "La Horde du Contrevent",
|
||||
"identifiers": { "goodreads": [ "25135826" ] },
|
||||
"languages": [ { "key": "/languages/fre" } ],
|
||||
"isbn_10": [ "2070464237" ],
|
||||
"publish_date": "2015",
|
||||
"works": [ { "key": "/works/OL15505243W" } ],
|
||||
"type": { "key": "/type/edition" },
|
||||
"physical_dimensions": "17.8 x 10.8 x centimeters",
|
||||
"local_id": [ "urn:bwbsku:W7-DET-916" ],
|
||||
"source_records": [ "promise:bwb_daily_pallets_2022-09-01" ],
|
||||
"latest_revision": 5,
|
||||
"revision": 5,
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2017-01-01T23:14:47.314119"
|
||||
},
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2022-12-04T13:20:06.799989"
|
||||
}
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
{
|
||||
"publishers": [ "Editions Gallimard" ],
|
||||
"source_records": [ "amazon:2070793109" ],
|
||||
"title": "La m\u00e9nagerie de papier",
|
||||
"identifiers": { "amazon": [ "2070793109" ] },
|
||||
"isbn_13": [ "9782070793105" ],
|
||||
"covers": [ 8750266 ],
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2019-08-05T10:36:44.503432"
|
||||
},
|
||||
"physical_format": "mass market paperback",
|
||||
"isbn_10": [ "2070793109" ],
|
||||
"latest_revision": 1,
|
||||
"key": "/books/OL27258011M",
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2019-08-05T10:36:44.503432"
|
||||
},
|
||||
"works": [ { "key": "/works/OL20078005W" } ],
|
||||
"type": { "key": "/type/edition" },
|
||||
"revision": 1
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
{
|
||||
"publishers": [ "Folio", "FOLIO", "GALLIMARD" ],
|
||||
"source_records": [ "amazon:207285329X" ],
|
||||
"title": "Dans la toile du temps",
|
||||
"identifiers": { "amazon": [ "207285329X" ] },
|
||||
"isbn_13": [ "9782072853296" ],
|
||||
"covers": [ 8792712 ],
|
||||
"physical_format": "mass market paperback",
|
||||
"isbn_10": [ "207285329X" ],
|
||||
"publish_date": "2019",
|
||||
"key": "/books/OL27328194M",
|
||||
"authors": [ { "key": "/authors/OL7468980A" } ],
|
||||
"works": [ { "key": "/works/OL20148560W" } ],
|
||||
"type": { "key": "/type/edition" },
|
||||
"number_of_pages": 704,
|
||||
"latest_revision": 2,
|
||||
"revision": 2,
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2019-10-02T21:11:02.625762"
|
||||
},
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2023-04-07T18:08:17.514602"
|
||||
}
|
||||
}
|
@ -0,0 +1,38 @@
|
||||
{
|
||||
"publishers": [ "Le B\u00e9lial'" ],
|
||||
"subtitle": "Terra Ignota volume 2",
|
||||
"covers": [ 9376451 ],
|
||||
"physical_format": "paperback",
|
||||
"full_title": "Sept redditions : Terra Ignota volume 2",
|
||||
"key": "/books/OL27989051M",
|
||||
"authors": [ { "key": "/authors/OL7475792A" } ],
|
||||
"source_records": [ "amazon:2843449626" ],
|
||||
"title": "Sept redditions",
|
||||
"notes": "Source title: Sept redditions: Terra Ignota volume 2 (Roman)",
|
||||
"number_of_pages": 544,
|
||||
"publish_date": "May 28, 2020",
|
||||
"works": [ { "key": "/works/OL19213555W" } ],
|
||||
"type": { "key": "/type/edition" },
|
||||
"identifiers": {},
|
||||
"isbn_10": [ "2843449626" ],
|
||||
"isbn_13": [ "9782843449628" ],
|
||||
"classifications": {},
|
||||
"languages": [ { "key": "/languages/fre" } ],
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Michelle Charrier",
|
||||
"role": "Translator"
|
||||
}
|
||||
],
|
||||
"series": [ "Terra Ignota #2" ],
|
||||
"latest_revision": 4,
|
||||
"revision": 4,
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2020-05-02T22:25:18.922926"
|
||||
},
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2021-12-07T07:10:56.070304"
|
||||
}
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
{
|
||||
"publishers": [ "GALLIMARD" ],
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2020-06-28T05:17:49.626242"
|
||||
},
|
||||
"source_records": [ "amazon:2070469875" ],
|
||||
"title": "La trilogie Spin",
|
||||
"notes": {
|
||||
"type": "/type/text",
|
||||
"value": "Source title: La trilogie Spin (Folio SF - XL) (French Edition)"
|
||||
},
|
||||
"number_of_pages": 1120,
|
||||
"isbn_13": [ "9782070469871" ],
|
||||
"covers": [ 10218906 ],
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2020-06-28T05:17:49.626242"
|
||||
},
|
||||
"physical_format": "paperback",
|
||||
"isbn_10": [ "2070469875" ],
|
||||
"publish_date": "Jun 02, 2016",
|
||||
"key": "/books/OL28294024M",
|
||||
"authors": [
|
||||
{ "key": "/authors/OL7876839A" },
|
||||
{ "key": "/authors/OL3113900A" }
|
||||
],
|
||||
"latest_revision": 1,
|
||||
"works": [ { "key": "/works/OL20889233W" } ],
|
||||
"type": { "key": "/type/edition" },
|
||||
"revision": 1
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
{
|
||||
"publishers": [ "Pocket", "POCKET" ],
|
||||
"source_records": [ "amazon:2266235818" ],
|
||||
"title": "Le Cycle de Dune Tome 2/Le Messie de Dune",
|
||||
"notes": {
|
||||
"type": "/type/text",
|
||||
"value": "Source title: Le Cycle de Dune Tome 2/Le Messie de Dune (Science-fiction) (French Edition)"
|
||||
},
|
||||
"number_of_pages": 336,
|
||||
"isbn_13": [ "9782266235815" ],
|
||||
"covers": [ 10328275 ],
|
||||
"physical_format": "mass market paperback",
|
||||
"isbn_10": [ "2266235818" ],
|
||||
"publish_date": "Nov 22, 2012",
|
||||
"key": "/books/OL28639494M",
|
||||
"authors": [
|
||||
{ "key": "/authors/OL79034A" },
|
||||
{ "key": "/authors/OL1846639A" }
|
||||
],
|
||||
"works": [ { "key": "/works/OL893526W" } ],
|
||||
"type": { "key": "/type/edition" },
|
||||
"latest_revision": 3,
|
||||
"revision": 3,
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2020-08-05T18:59:33.402965"
|
||||
},
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2021-10-24T22:27:33.839388"
|
||||
}
|
||||
}
|
@ -0,0 +1,31 @@
|
||||
{
|
||||
"identifiers": { "wikidata": [ "Q81118625" ] },
|
||||
"title": "Trop semblable \u00e0 l'\u00e9clair",
|
||||
"publish_date": "2019",
|
||||
"publishers": [ "Le B\u00e9lial'" ],
|
||||
"type": { "key": "/type/edition" },
|
||||
"isbn_13": [ "9782843449581" ],
|
||||
"series": [ "Terra Ignota #1" ],
|
||||
"physical_format": "paperback",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Michelle Charrier",
|
||||
"role": "Translator"
|
||||
}
|
||||
],
|
||||
"languages": [ { "key": "/languages/fre" } ],
|
||||
"key": "/books/OL35698073M",
|
||||
"number_of_pages": 672,
|
||||
"works": [ { "key": "/works/OL19800093W" } ],
|
||||
"source_records": [ "amazon:2843449588" ],
|
||||
"latest_revision": 4,
|
||||
"revision": 4,
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2021-12-07T02:12:00.907076"
|
||||
},
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2022-11-15T15:47:17.497202"
|
||||
}
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
{
|
||||
"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,26 @@
|
||||
{
|
||||
"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,29 @@
|
||||
{
|
||||
"type": { "key": "/type/edition" },
|
||||
"title": "Tour de Babylone",
|
||||
"authors": [ { "key": "/authors/OL1604887A" } ],
|
||||
"publish_date": "Apr 01, 2010",
|
||||
"source_records": [ "amazon:2070406881" ],
|
||||
"number_of_pages": 416,
|
||||
"publishers": [ "Gallimard Education" ],
|
||||
"isbn_10": [ "2070406881" ],
|
||||
"isbn_13": [ "9782070406883" ],
|
||||
"physical_format": "pocket book",
|
||||
"notes": {
|
||||
"type": "/type/text",
|
||||
"value": "Source title: Tour de Babylone (Folio Science Fiction) (French Edition)"
|
||||
},
|
||||
"works": [ { "key": "/works/OL27687397W" } ],
|
||||
"key": "/books/OL37758347M",
|
||||
"covers": [ 14058074 ],
|
||||
"latest_revision": 2,
|
||||
"revision": 2,
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2022-03-15T04:11:29.461242"
|
||||
},
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2023-04-16T15:24:11.712871"
|
||||
}
|
||||
}
|
@ -0,0 +1,31 @@
|
||||
{
|
||||
"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,28 @@
|
||||
{
|
||||
"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,38 @@
|
||||
{
|
||||
"publishers": [ "Collins" ],
|
||||
"identifiers": {
|
||||
"goodreads": [ "1101290" ],
|
||||
"librarything": [ "68418" ]
|
||||
},
|
||||
"subtitle": "Xerox PARC and the Dawn of the Computer Age",
|
||||
"weight": "13.9 ounces",
|
||||
"covers": [ 684348 ],
|
||||
"physical_format": "Paperback",
|
||||
"key": "/books/OL8198056M",
|
||||
"authors": [ { "key": "/authors/OL239209A" } ],
|
||||
"subjects": [ "Industries - General", "Research", "Corporate & Business History - General", "California", "Business & Economics", "Business / Economics / Finance", "Palo Alto Research Center", "Business/Economics", "Palo Alto", "History", "Computer Industry", "Business & Economics / Industries", "Xerox Corporation.", "Computer Science" ],
|
||||
"languages": [ { "key": "/languages/eng" } ],
|
||||
"first_sentence": {
|
||||
"type": "/type/text",
|
||||
"value": "The photograph shows a handsome man in a checked sport shirt, his boyish face half-obscured by a cloud of pipe smoke."
|
||||
},
|
||||
"title": "Dealers of Lightning",
|
||||
"number_of_pages": 448,
|
||||
"isbn_13": [ "9780887309892" ],
|
||||
"isbn_10": [ "0887309895" ],
|
||||
"publish_date": "April 4, 2000",
|
||||
"works": [ { "key": "/works/OL1987733W" } ],
|
||||
"type": { "key": "/type/edition" },
|
||||
"physical_dimensions": "8.1 x 5.3 x 1.2 inches",
|
||||
"source_records": [ "bwb:9780887309892" ],
|
||||
"latest_revision": 7,
|
||||
"revision": 7,
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2008-04-29T15:03:11.581851"
|
||||
},
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2021-12-27T03:34:56.026678"
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
{
|
||||
"publishers": [ "Editions Flammarion" ],
|
||||
"number_of_pages": 420,
|
||||
"weight": "7 ounces",
|
||||
"covers": [ 968374 ],
|
||||
"physical_format": "Mass Market Paperback",
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2020-07-15T08:55:39.381795"
|
||||
},
|
||||
"latest_revision": 7,
|
||||
"key": "/books/OL8839071M",
|
||||
"authors": [ { "key": "/authors/OL3113661A" } ],
|
||||
"subjects": [ "Language readers" ],
|
||||
"edition_name": "1 edition",
|
||||
"languages": [ { "key": "/languages/fre" } ],
|
||||
"classifications": {},
|
||||
"title": "La Petite Marchande De Prose",
|
||||
"identifiers": {
|
||||
"librarything": [ "586212" ],
|
||||
"goodreads": [ "355884" ]
|
||||
},
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2008-04-30T08:14:56.482104"
|
||||
},
|
||||
"isbn_13": [ "9782070403684" ],
|
||||
"isbn_10": [ "2070403688" ],
|
||||
"publish_date": "October 3, 1997",
|
||||
"works": [ { "key": "/works/OL705036W" } ],
|
||||
"type": { "key": "/type/edition" },
|
||||
"physical_dimensions": "7 x 4.2 x 0.9 inches",
|
||||
"revision": 7
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
{
|
||||
"publishers": [ "Hachette" ],
|
||||
"physical_format": "Unknown Binding",
|
||||
"source_records": [ "amazon:2010144236:2-au:1680493645:142556", "promise:bwb_daily_pallets_2020-11-19", "promise:bwb_daily_pallets_2021-03-30" ],
|
||||
"title": "L'homme Invisible",
|
||||
"identifiers": {
|
||||
"librarything": [ "21214" ],
|
||||
"goodreads": [ "1337072" ]
|
||||
},
|
||||
"isbn_13": [ "9782010144233" ],
|
||||
"isbn_10": [ "2010144236" ],
|
||||
"key": "/books/OL9797565M",
|
||||
"authors": [ { "key": "/authors/OL13066A" } ],
|
||||
"oclc_numbers": [ "417795539" ],
|
||||
"works": [ { "key": "/works/OL52266W" } ],
|
||||
"type": { "key": "/type/edition" },
|
||||
"subjects": [ "Language readers" ],
|
||||
"local_id": [ "urn:bwbsku:KO-352-184", "urn:bwbsku:UE-795-266" ],
|
||||
"latest_revision": 9,
|
||||
"revision": 9,
|
||||
"created": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2008-04-30T09:38:13.731961"
|
||||
},
|
||||
"last_modified": {
|
||||
"type": "/type/datetime",
|
||||
"value": "2023-01-14T23:55:47.329525"
|
||||
}
|
||||
}
|
@ -0,0 +1 @@
|
||||
{"summary": {"average": 4.5, "count": 2, "sortable": 2.61203319071753}, "counts": {"1": 0, "2": 0, "3": 0, "4": 1, "5": 1}}
|
@ -0,0 +1 @@
|
||||
{"summary": {"average": 4.2, "count": 5, "sortable": 2.8894368430603796}, "counts": {"1": 0, "2": 1, "3": 0, "4": 1, "5": 3}}
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"summary": {
|
||||
"average": null,
|
||||
"count": 0
|
||||
},
|
||||
"counts": {
|
||||
"1": 0,
|
||||
"2": 0,
|
||||
"3": 0,
|
||||
"4": 0,
|
||||
"5": 0
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue