-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fully Functional Python 3 - using requests in place of urllib2 #17
base: master
Are you sure you want to change the base?
Conversation
…rows command to set sorting to nothing if none is specified
Updated requirement to requests
All Tests pass! The changes to the test files were to adjust it to the defaults in 2.8 after I validated they were correct using the open refine UI. The very first test case I had to adjust, I had to make the column all numbers before the sting conversion would work for all columns. That was also the case when I used the UI. |
fixes for the following issues # #11 # |
…n file when creating new projects.
@@ -639,12 +643,11 @@ def get_reconciliation_services(self): | |||
def get_reconciliation_service_by_name_or_url(self, name): | |||
recon_services = self.get_reconciliation_services() | |||
for recon_service in recon_services: | |||
if recon_service['name'] == name or recon_service['url'] == name: | |||
if recon_service['name'] == name or recon_service['server_url'] == name: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change breaks lookups on wikidata reconciliation for me. Also line 676.
Creating a new project in OR 3.1 fails for me; works okay-ish with OR 2.8, although the project is created as |
Do you have any minimal working examples of how to do reconciliation? |
Working on fixing the facet engine. All but some of the tutorial tests pass