├── .gitignore ├── README.md ├── flaskserver ├── AO3.spec ├── app.py ├── app.spec └── functions.py ├── index.js ├── package.json ├── public ├── favicon.jpg ├── global.css └── index.html ├── rollup.config.js ├── scripts └── setupTypeScript.js └── src ├── App.svelte ├── functions └── index.js └── main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/README.md -------------------------------------------------------------------------------- /flaskserver/AO3.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/flaskserver/AO3.spec -------------------------------------------------------------------------------- /flaskserver/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/flaskserver/app.py -------------------------------------------------------------------------------- /flaskserver/app.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/flaskserver/app.spec -------------------------------------------------------------------------------- /flaskserver/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/flaskserver/functions.py -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/public/favicon.jpg -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/public/global.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/public/index.html -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/setupTypeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/scripts/setupTypeScript.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/functions/index.js: -------------------------------------------------------------------------------- 1 | export { pySpawn } from "./loadBackend"; 2 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanashter/bothermione-ao3wrapped/HEAD/src/main.js --------------------------------------------------------------------------------