-
Hi! I have a very simpe code, which works fine on my Windows machine, but I can't execute on DigitalOcean Ubuntu droplet. By the way, other methods (such as Inpadoc.objects.get()) works fine.
I also …
-
Great project - could you provide some more EPO samples? I'm having a hard time going from the docs to code because e.g. doc_number doesnt seem to be property on the Inpadoc object even though the doc…
-
Hi, on occasion I get the following error when importing Patent from patent_client
```
line 5, in
2023-11-27T12:23:56.772+00:00 from patent_client import Patent
2023-11-27T12:23:56.772+00:00 …
-
In the Search API (https://github.com/marco-svitol/quaestio-be/wiki/API-implementation#get-search--search-patent-documents)
together with the results, I am also returning userinfo.throttling-control.…
-
When I import the package, there raises an error that:
time data '202307' does not match format '%Y%m%d'
```
from patent_client import Inpadoc, Assignment, USApplication, PatentBiblio
```
---…
-
I'm on a fresh conda environment of Python 3.11.3. Using pip install patent_client works perfectly and install everything needed.
When running "import pantent_client" in python I get the following er…
-
On Ubuntu Linux 22.04 LTS, using python 3.10 and patent_client 3.2.4, and a config file with EPO key/secret, i cannot import patent_client:
```sh
chgans@chgans-laptop:/tmp$ python --version
Pytho…
-
Investigate issue mentioned in #74 related to the Inpadoc endpoint
Example:
```python
pub = Inpadoc.objects.get('EP3082535A1')
print(pub.biblio.title)
```
Error:
```python
Traceback (most re…
-
If I do e.g.
```python
from patent_client import Inpadoc
Inpadoc.objects.get("US2022323947A1")
```
when not sitting behind a proxy it works, but when I do sit behind a proxy I get
> Connec…
-
Example:
```python
from patent_client import Inpadoc, Assignment, USApplication, Patent
# Import the model classes you need
# Fetch US Patents with the word "tennis" in their title issued in 2010
…