{"id":2902,"date":"2021-07-21T08:01:55","date_gmt":"2021-07-21T08:01:55","guid":{"rendered":"https:\/\/www.bearloga.space\/?page_id=2902"},"modified":"2021-07-21T08:01:56","modified_gmt":"2021-07-21T08:01:56","slug":"sqlalchemy-core-ispolzovanie-konyunkczij","status":"publish","type":"page","link":"https:\/\/www.bearloga.space\/en\/sqlalchemy-core-ispolzovanie-konyunkczij\/","title":{"rendered":"SQLAlchemy Core \u2014 \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u043a\u043e\u043d\u044a\u044e\u043d\u043a\u0446\u0438\u0439"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">\u0421\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u2014 \u044d\u0442\u043e \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0432 \u043c\u043e\u0434\u0443\u043b\u0435 SQLAlchemy, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0440\u0435\u0430\u043b\u0438\u0437\u0443\u044e\u0442 \u0440\u0435\u043b\u044f\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u043e\u043f\u0435\u0440\u0430\u0442\u043e\u0440\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0435 \u0432 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0438 WHERE \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0439 SQL.&nbsp;\u041e\u043f\u0435\u0440\u0430\u0442\u043e\u0440\u044b AND, OR, NOT \u0438 \u0442. \u0414. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u0434\u043b\u044f \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u043e\u0441\u0442\u0430\u0432\u043d\u043e\u0433\u043e \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u044f\u044e\u0449\u0435\u0433\u043e \u0434\u0432\u0430 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0445 \u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f.&nbsp;\u041f\u0440\u043e\u0441\u0442\u043e\u0439 \u043f\u0440\u0438\u043c\u0435\u0440 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f AND \u0432 \u043e\u043f\u0435\u0440\u0430\u0442\u043e\u0440\u0435 SELECT \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SELECT * from EMPLOYEE WHERE salary&gt;10000 AND age&gt;30<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0424\u0443\u043d\u043a\u0446\u0438\u0438 SQLAlchemy and_ (), or_ () \u0438 not_ () \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0440\u0435\u0430\u043b\u0438\u0437\u0443\u044e\u0442 \u043e\u043f\u0435\u0440\u0430\u0442\u043e\u0440\u044b AND, OR \u0438 NOT.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">and_ () \u0444\u0443\u043d\u043a\u0446\u0438\u044f<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u0421\u043e\u0437\u0434\u0430\u0435\u0442 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0439, \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u043d\u044b\u0445 AND.&nbsp;\u041d\u0438\u0436\u0435 \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u043d \u043f\u0440\u0438\u043c\u0435\u0440 \u0434\u043b\u044f \u043b\u0443\u0447\u0448\u0435\u0433\u043e \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u044f \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">from sqlalchemy import and_\n\nprint(\n   and_(\n      students.c.name == 'Ravi',\n      students.c.id &lt;3\n   )\n)<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u042d\u0442\u043e \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u0442 \u043d\u0430 \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">students.name = :name_1 AND students.id &lt; :id_1<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0427\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c and_ () \u0432 \u043a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438 select () \u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0443\u0447\u0435\u043d\u0438\u043a\u043e\u0432, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e \u0441\u0442\u0440\u043e\u043a\u0443 \u043a\u043e\u0434\u0430:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">stmt = select([students]).where(and_(students.c.name == 'Ravi', students.c.id &lt;3))<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0411\u0443\u0434\u0435\u0442 \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u043e \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 SELECT \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0433\u043e \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0430:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SELECT students.id, \n   students.name, \n   students.lastname\nFROM students\nWHERE students.name = :name_1 AND students.id &lt; :id_1<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u041f\u043e\u043b\u043d\u044b\u0439 \u043a\u043e\u0434, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0432\u044b\u0432\u043e\u0434 \u0432\u044b\u0448\u0435\u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0433\u043e \u0437\u0430\u043f\u0440\u043e\u0441\u0430 SELECT, \u0432\u044b\u0433\u043b\u044f\u0434\u0438\u0442 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">from sqlalchemy import create_engine, MetaData, Table, Column, Integer, String, ForeignKey, select\nengine = create_engine('sqlite:\/\/\/college.db', echo = True)\nmeta = MetaData()\nconn = engine.connect()\n\nstudents = Table(\n   'students', meta, \n   Column('id', Integer, primary_key = True), \n   Column('name', String), \n   Column('lastname', String), \n)\n\nfrom sqlalchemy import and_, or_\nstmt = select([students]).where(and_(students.c.name == 'Ravi', students.c.id &lt;3))\nresult = conn.execute(stmt)\nprint (result.fetchall())<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u0431\u0443\u0434\u0435\u0442 \u0432\u044b\u0431\u0440\u0430\u043d\u0430 \u043f\u0440\u0438 \u0443\u0441\u043b\u043e\u0432\u0438\u0438, \u0447\u0442\u043e \u0442\u0430\u0431\u043b\u0438\u0446\u0430 \u0441\u0442\u0443\u0434\u0435\u043d\u0442\u043e\u0432 \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u043c\u0438, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u043c\u0438 \u0432 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u043c \u043f\u0440\u0438\u043c\u0435\u0440\u0435 \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[(1, 'Ravi', 'Kapoor')]\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\u0444\u0443\u043d\u043a\u0446\u0438\u044f or_ ()<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u042d\u0442\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0439, \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u043d\u044b\u0445 OR.\u00a0\u041c\u044b \u0437\u0430\u043c\u0435\u043d\u0438\u043c \u043e\u0431\u044a\u0435\u043a\u0442 stmt \u0432 \u0432\u044b\u0448\u0435\u043f\u0440\u0438\u0432\u0435\u0434\u0435\u043d\u043d\u043e\u043c \u043f\u0440\u0438\u043c\u0435\u0440\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f or_ ()<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">stmt = select([students]).where(or_(students.c.name == 'Ravi', students.c.id &lt;3))<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0427\u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e \u044d\u043a\u0432\u0438\u0432\u0430\u043b\u0435\u043d\u0442\u043d\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u043c\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0443 SELECT \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SELECT students.id, \n   students.name, \n   students.lastname\nFROM students\nWHERE students.name = :name_1 \nOR students.id &lt; :id_1<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u041a\u0430\u043a \u0442\u043e\u043b\u044c\u043a\u043e \u0432\u044b \u0441\u0434\u0435\u043b\u0430\u0435\u0442\u0435 \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 \u0438 \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u043d\u043d\u044b\u0439 \u0432\u044b\u0448\u0435 \u043a\u043e\u0434, \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u043c \u0431\u0443\u0434\u0435\u0442 \u0434\u0432\u0435 \u0441\u0442\u0440\u043e\u043a\u0438, \u043f\u043e\u043f\u0430\u0434\u0430\u044e\u0449\u0438\u0435 \u0432 \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u0418\u041b\u0418 \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[(1, 'Ravi', 'Kapoor'),\n(2, 'Rajiv', 'Khanna')]\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\u0444\u0443\u043d\u043a\u0446\u0438\u044f asc ()<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u0421\u043e\u0437\u0434\u0430\u0435\u0442 \u0432\u043e\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0435 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435 ORDER BY.&nbsp;\u0424\u0443\u043d\u043a\u0446\u0438\u044f \u0431\u0435\u0440\u0435\u0442 \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">from sqlalchemy import asc\nstmt = select([students]).order_by(asc(students.c.name))<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u041e\u043f\u0435\u0440\u0430\u0442\u043e\u0440 \u0440\u0435\u0430\u043b\u0438\u0437\u0443\u0435\u0442 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 SQL \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SELECT students.id, \n   students.name, \n   students.lastname\nFROM students \nORDER BY students.name ASC<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u043a\u043e\u0434 \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u044f\u0435\u0442 \u0432\u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0442\u0430\u0431\u043b\u0438\u0446\u0435 \u0441\u0442\u0443\u0434\u0435\u043d\u0442\u043e\u0432 \u0432 \u043f\u043e\u0440\u044f\u0434\u043a\u0435 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u043d\u0438\u044f \u0441\u0442\u043e\u043b\u0431\u0446\u0430 \u0438\u043c\u0435\u043d\u0438 \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">from sqlalchemy import create_engine, MetaData, Table, Column, Integer, String, ForeignKey, select\nengine = create_engine('sqlite:\/\/\/college.db', echo = True)\nmeta = MetaData()\nconn = engine.connect()\n\nstudents = Table(\n   'students', meta, \n   Column('id', Integer, primary_key = True), \n   Column('name', String), \n   Column('lastname', String), \n)\n\nfrom sqlalchemy import asc\nstmt = select([students]).order_by(asc(students.c.name))\nresult = conn.execute(stmt)\n\nfor row in result:\n   print (row)<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0412\u044b\u0448\u0435 \u043a\u043e\u0434 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0432\u044b\u0432\u043e\u0434 \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">(4, 'Abdul', 'Sattar')\n(3, 'Komal', 'Bhandari')\n(5, 'Priya', 'Rajhans')\n(2, 'Rajiv', 'Khanna')\n(1, 'Ravi', 'Kapoor')\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\u0444\u0443\u043d\u043a\u0446\u0438\u044f desc ()<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u0422\u043e\u0447\u043d\u043e \u0442\u0430\u043a \u0436\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u044f desc () \u0441\u043e\u0437\u0434\u0430\u0435\u0442 \u043d\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0435\u0435 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435 ORDER BY \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">from sqlalchemy import desc\nstmt = select([students]).order_by(desc(students.c.lastname))<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u042d\u043a\u0432\u0438\u0432\u0430\u043b\u0435\u043d\u0442\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 SQL \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SELECT students.id, \n   students.name, \n   students.lastname\nFROM students \nORDER BY students.lastname DESC<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0418 \u0432\u044b\u0432\u043e\u0434 \u0434\u043b\u044f \u0432\u044b\u0448\u0435\u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0445 \u0441\u0442\u0440\u043e\u043a \u043a\u043e\u0434\u0430 \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">(4, 'Abdul', 'Sattar')\n(5, 'Priya', 'Rajhans')\n(2, 'Rajiv', 'Khanna')\n(1, 'Ravi', 'Kapoor')\n(3, 'Komal', 'Bhandari')\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\u043c\u0435\u0436\u0434\u0443 () \u0444\u0443\u043d\u043a\u0446\u0438\u0435\u0439<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u041e\u043d \u0441\u043e\u0437\u0434\u0430\u0435\u0442 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u0434\u0438\u043a\u0430\u0442\u0430 BETWEEN.&nbsp;\u041e\u0431\u044b\u0447\u043d\u043e \u044d\u0442\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0442\u043e\u0433\u043e, \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043b\u0438 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0441\u0442\u043e\u043b\u0431\u0446\u0430 \u0432 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0435.&nbsp;\u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u043a\u043e\u0434 \u0432\u044b\u0431\u0438\u0440\u0430\u0435\u0442 \u0441\u0442\u0440\u043e\u043a\u0438, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u0442\u043e\u043b\u0431\u0435\u0446 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043c\u0435\u0436\u0434\u0443 2 \u0438 4 \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">from sqlalchemy import between\nstmt = select([students]).where(between(students.c.id,2,4))\nprint (stmt)<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0438\u0440\u0443\u044e\u0449\u0435\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 SQL \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u0435\u0442 \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SELECT students.id, \n   students.name, \n   students.lastname\nFROM students\nWHERE students.id \nBETWEEN :id_1 AND :id_2<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u0421\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u2014 \u044d\u0442\u043e \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0432 \u043c\u043e\u0434\u0443\u043b\u0435 SQLAlchemy, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0440\u0435\u0430\u043b\u0438\u0437\u0443\u044e\u0442 \u0440\u0435\u043b\u044f\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u043e\u043f\u0435\u0440\u0430\u0442\u043e\u0440\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0435 \u0432 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0438 WHERE \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0439 SQL.&nbsp;\u041e\u043f\u0435\u0440\u0430\u0442\u043e\u0440\u044b AND, OR, NOT [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[103],"tags":[],"class_list":["post-2902","page","type-page","status-publish","hentry","category-sqlalchemy"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/pages\/2902","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/comments?post=2902"}],"version-history":[{"count":0,"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/pages\/2902\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/media?parent=2902"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/categories?post=2902"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/tags?post=2902"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}